From 233b35edbe97a4958285af41bc908000debd5506 Mon Sep 17 00:00:00 2001 From: Maschell Date: Tue, 16 Mar 2021 17:35:33 +0100 Subject: [PATCH] Only check for SD insertion/removal in Wii U Menu --- src/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 5144f1e..942cb62 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -76,6 +76,11 @@ ON_APPLICATION_START(args) { } ON_VYSNC() { + if (OSGetTitleID() != 0x0005001010040000L && // Wii U Menu JPN + OSGetTitleID() != 0x0005001010040100L && // Wii U Menu USA + OSGetTitleID() != 0x0005001010040200L) { // Wii U Menu ERU + return; + } if (doReboot) { return; }