Skip to content

Commit

Permalink
Wii U fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mode8fx committed Mar 6, 2024
1 parent 98a79f4 commit 1c62365
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions SuDokuLVS2019/src/include.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#if defined(WII_U)
#include <unistd.h>
#include <whb/sdcard.h>
#include <whb/proc.h>
#elif defined(VITA)
#include <psp2/kernel/processmgr.h>
#elif defined(SWITCH)
Expand Down
2 changes: 1 addition & 1 deletion SuDokuLVS2019/src/include_graphics.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#include "graphics_include/logo_720.h"
#endif

#if defined(PSP) || defined(VITA) || defined(WII_U) || defined(WII)
#if defined(PSP) || defined(VITA) || defined(WII)
#define logo_1080_png NULL
#define logo_1080_png_len 0
#else
Expand Down
2 changes: 2 additions & 0 deletions SuDokuLVS2019/src/shared.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,8 @@ void closeController() {
void systemSpecificClose() {
#if defined(WII_U)
WHBUnmountSdCard();
WHBProcInit();
WHBProcShutdown();
#elif defined(VITA)
sceKernelExitProcess(0);
#elif defined(PSP)
Expand Down

0 comments on commit 1c62365

Please sign in to comment.