From 5d45453483fe68052e023df5034aa285e9e370a6 Mon Sep 17 00:00:00 2001 From: "Daniel K. O. (dkosmari)" Date: Sat, 19 Jul 2025 06:46:56 -0300 Subject: [PATCH 1/2] Fixed format strings for pointers. --- source/PluginUtils.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/PluginUtils.cpp b/source/PluginUtils.cpp index 3039a12..4836e17 100644 --- a/source/PluginUtils.cpp +++ b/source/PluginUtils.cpp @@ -48,7 +48,7 @@ static std::optional getMetaInformation(const wups_backen std::optional getMetaInformationForBuffer(char *buffer, size_t size, PluginBackendApiErrorType &err, PluginBackendPluginParseError &parseErr) { wups_backend_plugin_information info = {}; if ((err = WUPSBackend_GetPluginMetaInformationByBuffer(&info, buffer, size, &parseErr)) != PLUGIN_BACKEND_API_ERROR_NONE) { - DEBUG_FUNCTION_LINE_ERR("Failed to load meta infos for buffer %08X with size %08X", buffer, size); + DEBUG_FUNCTION_LINE_ERR("Failed to load meta infos for buffer %p with size %08X", buffer, size); return {}; } return getMetaInformation(info, err); @@ -82,13 +82,13 @@ std::optional getPluginForPath(const std::string &path, PluginB std::optional getPluginForBuffer(char *buffer, size_t size, PluginBackendApiErrorType &err, PluginBackendPluginParseError &parseErr) { auto metaInfoOpt = getMetaInformationForBuffer(buffer, size, err, parseErr); if (!metaInfoOpt) { - DEBUG_FUNCTION_LINE_ERR("Failed to get MetaInformation for buffer %08X (%d bytes)", buffer, size); + DEBUG_FUNCTION_LINE_ERR("Failed to get MetaInformation for buffer %p (%d bytes)", buffer, size); return {}; } wups_backend_plugin_data_handle dataHandle; if ((err = WUPSBackend_LoadPluginAsDataByBuffer(&dataHandle, buffer, size)) != PLUGIN_BACKEND_API_ERROR_NONE) { - DEBUG_FUNCTION_LINE_ERR("WUPSLoadPluginAsDataByBuffer failed for buffer %08X (%d bytes)", buffer, size); + DEBUG_FUNCTION_LINE_ERR("WUPSLoadPluginAsDataByBuffer failed for buffer %p (%d bytes)", buffer, size); return {}; } @@ -190,4 +190,4 @@ PluginBackendApiErrorType LoadAndLinkOnRestart(const std::vector Date: Sat, 19 Jul 2025 06:49:54 -0300 Subject: [PATCH 2/2] Updated source docker image. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 56f43b9..79e1910 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 . .