-set version number to Beta 4.0.1

-fixed return to wiiflow in ios reloading wii games
This commit is contained in:
fix94.1 2012-08-27 18:20:31 +00:00
parent bfa754668d
commit 0b4ae96eb6
2 changed files with 12 additions and 9 deletions

View File

@ -1060,15 +1060,18 @@ void Nand::Init_ISFS()
void Nand::DeInit_ISFS(bool KeepPatches) void Nand::DeInit_ISFS(bool KeepPatches)
{ {
gprintf("Deinit ISFS\n"); gprintf("Deinit ISFS\n");
if(AHBRPOT_Patched() && !KeepPatches) if(AHBRPOT_Patched())
{ {
// Disable memory protection // Disable memory protection
write16(MEM_PROT, 0); write16(MEM_PROT, 0);
if(!KeepPatches)
{
// Do patches // Do patches
MagicPatches(0); MagicPatches(0);
// Enable memory protection // Enable memory protection
write16(MEM_PROT, 1); write16(MEM_PROT, 1);
} }
}
ISFS_Deinitialize(); ISFS_Deinitialize();
} }

View File

@ -1,5 +1,5 @@
#define APP_NAME "WiiFlow" #define APP_NAME "WiiFlow"
#define APP_VERSION "Mod 3.1" #define APP_VERSION "Beta 4.0.1"
#define APPDATA_DIR "wiiflow" #define APPDATA_DIR "wiiflow"
#define APPDATA_DIR2 "apps/wiiflow" #define APPDATA_DIR2 "apps/wiiflow"