From 423ec0da0d9d8db7053ca4e43280d4227b91c93d Mon Sep 17 00:00:00 2001 From: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> Date: Mon, 1 Feb 2021 21:21:13 +0100 Subject: [PATCH] wiiu: fix channel controllerconfig saving --- src/core/re3.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/re3.cpp b/src/core/re3.cpp index a6f5fbbc..bd62e31b 100644 --- a/src/core/re3.cpp +++ b/src/core/re3.cpp @@ -351,7 +351,11 @@ void SaveINIControllerSettings() StoreIni("Controller", "JoystickName", gSelectedJoystickName, 128); #endif StoreIni("Controller", "PadButtonsInited", ControlsManager.ms_padButtonsInited); +#ifdef WIIU_CHANNEL + cfg.write_file("/vol/external01/wiiu/apps/re3/re3.ini"); +#else cfg.write_file("re3.ini"); +#endif } bool LoadINISettings()