mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2026-04-25 07:27:07 -05:00
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
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:
parent
7e32e7038a
commit
3b1133c9c9
|
|
@ -1,4 +1,4 @@
|
|||
FROM ghcr.io/wiiu-env/devkitppc:20241128
|
||||
FROM ghcr.io/wiiu-env/devkitppc:20250608
|
||||
|
||||
WORKDIR tmp_build
|
||||
COPY . .
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
FROM ghcr.io/wiiu-env/devkitppc:20241128
|
||||
FROM ghcr.io/wiiu-env/devkitppc:20250608
|
||||
|
||||
WORKDIR project
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user