small update

This commit is contained in:
FIX94 2016-11-28 19:05:58 +01:00
parent 527d39deb7
commit e95c51fc1b
3 changed files with 9 additions and 5 deletions

View File

@ -7,7 +7,7 @@ echo.
echo Building DS ROMs
echo.
make clean
make
make Windows_NT=1
cd ../installer
echo.

View File

@ -29,6 +29,10 @@ The following games right now are supported by the installer:
|Zelda Phantom Hourglass|101C3600|101C3700|101C3800|
|Kirby Mass Attack|101C8600|101C8700|101C8800|
## Dependencies
To properly compile this project yourself you will need the latest libiosuhax from dimok789's github.
## credit
smea, plutoo, yellows8, naehrwert, derrek, FIX94 and dimok

View File

@ -40,7 +40,7 @@ int MCPHookOpen()
IOS_IoctlAsync(mcp_hook_fd, 0x62, (void*)0, 0, (void*)0, 0, someFunc, (void*)0);
//let wupserver start up
sleep(1);
if(IOSUHAX_Open() < 0)
if(IOSUHAX_Open("/dev/mcp") < 0)
return -1;
return 0;
}
@ -244,7 +244,7 @@ int Menu_Main(void)
{
OSScreenClearBufferEx(0, 0);
OSScreenClearBufferEx(1, 0);
println_noflip(0,"Haxchi v2.0 by FIX94");
println_noflip(0,"Haxchi v2.0u1 by FIX94");
println_noflip(1,"Credits to smea, plutoo, yellows8, naehrwert, derrek and dimok");
println_noflip(2,"Please select the game for the Installation from the list below.");
// Starting position.
@ -266,7 +266,7 @@ int Menu_Main(void)
{
OSScreenClearBufferEx(0, 0);
OSScreenClearBufferEx(1, 0);
println_noflip(0,"Haxchi v2.0 by FIX94");
println_noflip(0,"Haxchi v2.0u1 by FIX94");
println_noflip(1,"Credits to smea, plutoo, yellows8, naehrwert, derrek and dimok");
println_noflip(2,"You have selected the following game:");
println_noflip(3,SelectedGame->name);
@ -330,7 +330,7 @@ int Menu_Main(void)
sprintf(path,"%s/content/0010/rom.zip",SelectedGame->path);
if(IOSUHAX_FSA_OpenFile(fsaFd, path, "rb", &mlcFd) < 0)
{
println(line++,"No existing rom.zip not found in the game!");
println(line++,"No already existing rom.zip found in the game!");
println(line++,"Make sure to update your DS title and try again.");
goto prgEnd;
}