diff --git a/out/bins/ext_booter.bin b/out/bins/ext_booter.bin index c317ef36..abeb3140 100644 Binary files a/out/bins/ext_booter.bin and b/out/bins/ext_booter.bin differ diff --git a/out/boot.dol b/out/boot.dol index d58b3167..a8f4567b 100644 Binary files a/out/boot.dol and b/out/boot.dol differ diff --git a/source/defines.h b/source/defines.h index 3a5777a4..2388f0f9 100644 --- a/source/defines.h +++ b/source/defines.h @@ -6,7 +6,7 @@ #else #define APP_NAME "WiiFlow Lite" #endif -#define APP_VERSION "5.3.0 beta 11" +#define APP_VERSION "5.3.0 beta 12" #define APP_DATA_DIR "wiiflow" #ifdef APP_WIIFLOW diff --git a/source/menu/menu_main.cpp b/source/menu/menu_main.cpp index b99916af..d72928f4 100644 --- a/source/menu/menu_main.cpp +++ b/source/menu/menu_main.cpp @@ -55,10 +55,10 @@ void CMenu::_setMainBg() switch(m_current_view) { case COVERFLOW_CHANNEL: - if(m_cfg.getInt(CHANNEL_DOMAIN, "channels_type") & CHANNELS_EMU) - strncpy(m_plugin.PluginMagicWord, "454E414E", 9); - else + if(m_cfg.getInt(CHANNEL_DOMAIN, "channels_type") & CHANNELS_REAL) strncpy(m_plugin.PluginMagicWord, "4E414E44", 9); + else + strncpy(m_plugin.PluginMagicWord, "454E414E", 9); break; case COVERFLOW_HOMEBREW: strncpy(m_plugin.PluginMagicWord, "48425257", 9); @@ -339,7 +339,6 @@ int CMenu::main(void) bool show_plugin = !m_cfg.getBool(PLUGIN_DOMAIN, "disable", false); bool show_gamecube = !m_cfg.getBool(GC_DOMAIN, "disable", false); bool show_homebrew = !m_cfg.getBool(HOMEBREW_DOMAIN, "disable", false); - //m_multisource = m_cfg.getBool("GENERAL", "multisource", false); bool m_source_on_start = m_cfg.getBool("GENERAL", "source_on_start", false); bool bheld = false;// bheld to indicate btn b was pressed or held bool bUsed = false;// bused to indicate that it was actually used for something