From ee76aba48e0b5dfb218b3f1f07c44e658f67859f Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 17 Apr 2021 12:13:22 +0200 Subject: [PATCH] Compile with latest wut --- Dockerfile | 4 ++-- source/main.cpp | 7 ++----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 282fff4..8a96854 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM wiiuenv/devkitppc:20210101 +FROM wiiuenv/devkitppc:20210414 COPY --from=wiiuenv/libkernel:20210109 /artifacts $DEVKITPRO COPY --from=wiiuenv/libfunctionpatcher:20210109 /artifacts $DEVKITPRO -COPY --from=wiiuenv/wiiumodulesystem:20210313 /artifacts $DEVKITPRO +COPY --from=wiiuenv/wiiumodulesystem:20210414 /artifacts $DEVKITPRO WORKDIR project \ No newline at end of file diff --git a/source/main.cpp b/source/main.cpp index c00ca86..51e20df 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -6,12 +6,9 @@ WUMS_MODULE_SKIP_ENTRYPOINT(); WUMS_MODULE_SKIP_WUT_INIT(); WUMS_MODULE_INIT_BEFORE_RELOCATION_DONE_HOOK(); -WUMS_INITIALIZE(){ - WHBLogUdpInit(); -} - WUMS_APPLICATION_STARTS() { - WHBLogUdpInit(); + // Currently we have no logging because we're skipping the wut init/fini calls. + // WHBLogUdpInit(); FunctionPatcherResetLibHandles(); }