diff --git a/Dockerfile b/Dockerfile index 7afb775..9d5aef4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/wiiu-env/devkitppc:20240423 +FROM ghcr.io/wiiu-env/devkitppc:20250608 WORKDIR tmp_build COPY . . @@ -6,4 +6,4 @@ RUN make clean && make && mkdir -p /artifacts/wums && cp -r lib /artifacts/wums WORKDIR /artifacts FROM scratch -COPY --from=0 /artifacts /artifacts \ No newline at end of file +COPY --from=0 /artifacts /artifacts diff --git a/source/ButtonCombo.cpp b/source/ButtonCombo.cpp index a9651d4..a7d94ec 100644 --- a/source/ButtonCombo.cpp +++ b/source/ButtonCombo.cpp @@ -34,7 +34,7 @@ namespace ButtonComboModule { void ButtonCombo::ReleaseButtonComboHandle() { if (mHandle != nullptr) { if (const auto res = ButtonComboModule_RemoveButtonCombo(mHandle); res != BUTTON_COMBO_MODULE_ERROR_SUCCESS) { - OSReport("ButtonCombo::ReleaseButtonComboHandle(): ButtonComboModule_RemoveButtonCombo for %08X returned: %s\n", mHandle, ButtonComboModule_GetStatusStr(res)); + OSReport("ButtonCombo::ReleaseButtonComboHandle(): ButtonComboModule_RemoveButtonCombo for %p returned: %s\n", mHandle.handle, ButtonComboModule_GetStatusStr(res)); } mHandle = ButtonComboModule_ComboHandle(nullptr); } @@ -103,4 +103,4 @@ namespace ButtonComboModule { ButtonCombo::ButtonCombo(const ButtonComboModule_ComboHandle handle) : mHandle(handle) { } -} // namespace ButtonComboModule \ No newline at end of file +} // namespace ButtonComboModule