From d40d84e80aad20a23c7d8303176ec485988b54a2 Mon Sep 17 00:00:00 2001 From: Alexander Reim Date: Sun, 11 Oct 2020 11:51:02 +0200 Subject: [PATCH] WII: Return to the system menu instead of a black screen on exit --- backends/platform/wii/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backends/platform/wii/main.cpp b/backends/platform/wii/main.cpp index e5d3e74c3a0..72d2514d90e 100644 --- a/backends/platform/wii/main.cpp +++ b/backends/platform/wii/main.cpp @@ -253,6 +253,8 @@ int main(int argc, char *argv[]) { gfx_deinit(); gfx_video_deinit(); + SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0); + return res; }