diff --git a/Build.bat b/Build.bat index 38a7d00..a0637de 100644 --- a/Build.bat +++ b/Build.bat @@ -7,7 +7,7 @@ echo. echo Building DS ROMs echo. make clean -make +make Windows_NT=1 cd ../installer echo. diff --git a/README.md b/README.md index f8dbeb5..f89fdd8 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/installer/src/main.c b/installer/src/main.c index c6df6d7..2f3e402 100644 --- a/installer/src/main.c +++ b/installer/src/main.c @@ -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; }