From 758d3f4b1f43cfc8304eb40dce486d19af17808f Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Sat, 7 Apr 2012 22:49:59 +0200 Subject: [PATCH] never show uniiloader in external menu while running under neek2o --- source/Prompts/prompt_loader.cpp | 3 ++- source/uneek_fs.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/source/Prompts/prompt_loader.cpp b/source/Prompts/prompt_loader.cpp index 416622b..33241e7 100644 --- a/source/Prompts/prompt_loader.cpp +++ b/source/Prompts/prompt_loader.cpp @@ -5,6 +5,7 @@ #include "main.h" #include "menu.h" #include "Tools/SelectIos.h" +#include "uneek_fs.h" /*** Extern variables ***/ extern GuiWindow * mainWindow; @@ -91,7 +92,7 @@ loaderPrompt() promptWindow.Append(&dialogBoxImg); promptWindow.Append(&titleTxt); - if(get_nandemu()) + if(get_nandemu() && ! check_uneek_fs()) promptWindow.Append(&nandemu); if(get_priiloader() == 1) promptWindow.Append(&priiloader); diff --git a/source/uneek_fs.c b/source/uneek_fs.c index d7d282d..8bc7cc7 100644 --- a/source/uneek_fs.c +++ b/source/uneek_fs.c @@ -649,4 +649,4 @@ bool WII_Launch_Channel(char* which) // basically, it shouldn't get here I assume #endif //HW_RVL return false; -} \ No newline at end of file +}