From 86e360506a3610f2f047d2cc4d79e72aa4b54a16 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 5 Jan 2023 19:04:34 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- src/main.cpp | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index a520e64..4b43215 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM wiiuenv/devkitppc:20220806 +FROM wiiuenv/devkitppc:20221228 -COPY --from=wiiuenv/wiiupluginsystem:20220904 /artifacts $DEVKITPRO +COPY --from=wiiuenv/wiiupluginsystem:20220924 /artifacts $DEVKITPRO COPY --from=wiiuenv/libmappedmemory:20220904 /artifacts $DEVKITPRO WORKDIR project diff --git a/src/main.cpp b/src/main.cpp index 1394a9c..6443d72 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -395,26 +395,26 @@ void skip_own_region_changed(ConfigItemBoolean *item, bool newValue) { } void default_lang_changed(ConfigItemMultipleValues *item, uint32_t newValue) { - DEBUG_FUNCTION_LINE("New value in %s changed: %d", item->configID, newValue); + DEBUG_FUNCTION_LINE("New value in %s changed: %d", item->configId, newValue); wups_storage_item_t *root; if (WUPS_GetSubItem(nullptr, CAT_GENERAL_ROOT, &root) != WUPS_STORAGE_ERROR_SUCCESS) { return; } - wups_storage_item_t *general_settings; + wups_storage_item_t* general_settings; if (WUPS_GetSubItem(root, CAT_GENERAL_SETTINGS, &general_settings) != WUPS_STORAGE_ERROR_SUCCESS) { return; } - WUPS_StoreInt(general_settings, item->configID, (int32_t) newValue); - if (strcmp(item->configID, VAL_DEFAULT_LANG_EUR) == 0) { + WUPS_StoreInt(general_settings, item->configId, (int32_t) newValue); + if (strcmp(item->configId, VAL_DEFAULT_LANG_EUR) == 0) { DEBUG_FUNCTION_LINE("Updated default eur lang"); gDefaultLangForEUR = (Lanuages) newValue; - } else if (strcmp(item->configID, VAL_DEFAULT_LANG_USA) == 0) { + } else if (strcmp(item->configId, VAL_DEFAULT_LANG_USA) == 0) { DEBUG_FUNCTION_LINE("Updated default usa lang"); gDefaultLangForUSA = (Lanuages) newValue; - } else if (strcmp(item->configID, VAL_DEFAULT_LANG_JPN) == 0) { + } else if (strcmp(item->configId, VAL_DEFAULT_LANG_JPN) == 0) { DEBUG_FUNCTION_LINE("Updated default jpn lang"); gDefaultLangForJPN = (Lanuages) newValue; }