From a836a3fdd1688f6a99a02362f15e0d9b703f841a Mon Sep 17 00:00:00 2001 From: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> Date: Tue, 18 Jan 2022 16:19:04 +0100 Subject: [PATCH] Allow quick starting into vWii --- source/QuickStartUtils.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source/QuickStartUtils.cpp b/source/QuickStartUtils.cpp index 70f0071..ee10278 100644 --- a/source/QuickStartUtils.cpp +++ b/source/QuickStartUtils.cpp @@ -197,6 +197,13 @@ bool getQuickBoot() { return true; } + if (info.titleId == 0x0005001010004000L) { // OSv0 + DEBUG_FUNCTION_LINE("Launching vWii System Menu"); + bootvWiiMenu(); + + return true; + } + if (!SYSCheckTitleExists(info.titleId)) { DEBUG_FUNCTION_LINE("Title %016llX doesn't exist", info.titleId); return false;