Stop sound when entering the AutobootModule

This commit is contained in:
Maschell 2023-01-11 10:46:58 +01:00
parent af68c340cf
commit 9d8d14d192
1 changed files with 6 additions and 1 deletions

View File

@ -9,6 +9,7 @@
#include <gx2/state.h>
#include <malloc.h>
#include <mocha/mocha.h>
#include <sndcore2/core.h>
#include <string>
#include <sys/stat.h>
#include <vpad/input.h>
@ -29,6 +30,7 @@ void clearScreen() {
int32_t main(int32_t argc, char **argv) {
initLogging();
DEBUG_FUNCTION_LINE("Hello from Autoboot Module");
AXInit();
// Clear screen to avoid screen corruptions when loading the Wii U Menu
clearScreen();
@ -36,6 +38,7 @@ int32_t main(int32_t argc, char **argv) {
initExternalStorage();
if (getQuickBoot()) {
AXQuit();
deinitLogging();
return 0;
}
@ -124,7 +127,9 @@ int32_t main(int32_t argc, char **argv) {
bootWiiUMenu();
}
deinitLogging();
AXQuit();
Mocha_DeInitLibrary();
deinitLogging();
return 0;
}