Use latest Dockerfile
Some checks failed
Publish Docker Image / clang-format-lib (push) Has been cancelled
Publish Docker Image / clang-format-examples (push) Has been cancelled
Publish Docker Image / build-lib (push) Has been cancelled
Publish Docker Image / build-examples (push) Has been cancelled
Publish Docker Image / build-and-push-image (push) Has been cancelled

This commit is contained in:
Maschell 2025-06-08 11:56:35 +02:00
parent 7e32e7038a
commit 3b1133c9c9
4 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
FROM ghcr.io/wiiu-env/devkitppc:20241128
FROM ghcr.io/wiiu-env/devkitppc:20250608
WORKDIR tmp_build
COPY . .

View File

@ -1,4 +1,4 @@
FROM ghcr.io/wiiu-env/devkitppc:20241128
FROM ghcr.io/wiiu-env/devkitppc:20250608
WORKDIR tmp_build
COPY . .
@ -8,7 +8,7 @@ WORKDIR /artifacts
FROM scratch as libwups
COPY --from=0 /artifacts /artifacts
FROM ghcr.io/wiiu-env/devkitppc:20241128
FROM ghcr.io/wiiu-env/devkitppc:20250608
COPY --from=libwups /artifacts $DEVKITPRO

View File

@ -1,3 +1,3 @@
FROM ghcr.io/wiiu-env/devkitppc:20241128
FROM ghcr.io/wiiu-env/devkitppc:20250608
WORKDIR project

View File

@ -37,7 +37,7 @@ namespace WUPSButtonComboAPI {
void ButtonCombo::ReleaseButtonComboHandle() {
if (mHandle != nullptr) {
if (const auto res = WUPSButtonComboAPI_RemoveButtonCombo(mHandle); res != WUPS_BUTTON_COMBO_ERROR_SUCCESS) {
OSReport("ButtonCombo::ReleaseButtonComboHandle(): WUPSButtonComboAPI_RemoveButtonCombo for %08X returned: %s\n", mHandle, WUPSButtonComboAPI_GetStatusStr(res));
OSReport("ButtonCombo::ReleaseButtonComboHandle(): WUPSButtonComboAPI_RemoveButtonCombo for %p returned: %s\n", mHandle.handle, WUPSButtonComboAPI_GetStatusStr(res));
}
mHandle = WUPSButtonCombo_ComboHandle(nullptr);
}