-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,14 +1060,17 @@ 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);
// Do patches if(!KeepPatches)
MagicPatches(0); {
// Enable memory protection // Do patches
write16(MEM_PROT, 1); MagicPatches(0);
// Enable memory protection
write16(MEM_PROT, 1);
}
} }
ISFS_Deinitialize(); ISFS_Deinitialize();
} }

View File

@ -1,12 +1,12 @@
#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"
#define STDEMU_DIR "/wiiflow/nandemu" #define STDEMU_DIR "/wiiflow/nandemu"
#define GAMES_DIR "%s:/wbfs" #define GAMES_DIR "%s:/wbfs"
#define HOMEBREW_DIR "%s:/apps" #define HOMEBREW_DIR "%s:/apps"
#define DML_DIR "%s:/games" #define DML_DIR "%s:/games"
#define CFG_FILENAME "wiiflow.ini" #define CFG_FILENAME "wiiflow.ini"
#define LANG_FILENAME "languages.ini" #define LANG_FILENAME "languages.ini"