From 0da71f9420398070198dfde2465a171bcc86d5ad Mon Sep 17 00:00:00 2001 From: Maschell Date: Tue, 10 Jan 2023 16:26:21 +0100 Subject: [PATCH] Init AX to stop boot sound while running WUDD --- source/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/main.cpp b/source/main.cpp index 9668f82..c4de7ee 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include @@ -38,6 +39,7 @@ procHomeButtonDeniedCustom(void *context) { int main(int argc, char **argv) { initLogging(); DEBUG_FUNCTION_LINE("Hello from wudump!"); + AXInit(); WHBProcInit(); WiiUScreen::Init(); @@ -106,6 +108,7 @@ int main(int argc, char **argv) { WiiUScreen::DeInit(); WHBProcShutdown(); + AXQuit(); return 0; }