From c4b21414eedd527d28ecbf227dd244a30f211c01 Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Sun, 14 Aug 2016 19:40:07 +0200 Subject: [PATCH] minor change in bootmii return value on vWii --- main/source/Tools/SelectIos.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/main/source/Tools/SelectIos.cpp b/main/source/Tools/SelectIos.cpp index c3a004c..a0e32fc 100644 --- a/main/source/Tools/SelectIos.cpp +++ b/main/source/Tools/SelectIos.cpp @@ -307,10 +307,7 @@ bool listIOS() } // Skip bootmii IOS - if (titleID == 254) - { - continue; - } + if (titleID == 254) continue; // Check if this title is an IOS stub u32 tmdSize; @@ -426,8 +423,10 @@ int get_bootmii() if(Options.bootmii_boot2) return 3; else + return bootmii; +#else + return 0; #endif - return bootmii; } void set_bootmii(int choice)