From 209ef3d6a113b70866941ec182c73266e439188f Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 2 Oct 2021 11:22:10 +0200 Subject: [PATCH] use WUPS 0.6.1 --- Dockerfile | 2 +- src/BackgroundThread.hpp | 1 - src/utils/CThread.h | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e51d5d..4fd9956 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM wiiuenv/devkitppc:20210920 -COPY --from=wiiuenv/wiiupluginsystem:20210924 /artifacts $DEVKITPRO +COPY --from=wiiuenv/wiiupluginsystem:20211001 /artifacts $DEVKITPRO COPY --from=wiiuenv/libiosuhax:20210924 /artifacts $DEVKITPRO WORKDIR project \ No newline at end of file diff --git a/src/BackgroundThread.hpp b/src/BackgroundThread.hpp index 89dbe91..3f4c541 100644 --- a/src/BackgroundThread.hpp +++ b/src/BackgroundThread.hpp @@ -22,7 +22,6 @@ public: static void destroyInstance() { DCFlushRange(&instance, sizeof(BackgroundThread)); ICInvalidateRange(&instance, sizeof(BackgroundThread)); - DEBUG_FUNCTION_LINE("Instance is %08X\n", instance); OSSleepTicks(OSSecondsToTicks(1)); if (instance != nullptr) { delete instance; diff --git a/src/utils/CThread.h b/src/utils/CThread.h index f0dbda0..d0300ba 100644 --- a/src/utils/CThread.h +++ b/src/utils/CThread.h @@ -44,7 +44,6 @@ public: //! destructor virtual ~CThread() { shutdownThread(); - DEBUG_FUNCTION_LINE("END\n"); } static CThread *create(CThread::Callback callback, void *callbackArg, int32_t iAttr = eAttributeNone, int32_t iPriority = 16, int32_t iStackSize = 0x8000) {