From 4895880682ea7fe096f54127bfa499f7284327fa Mon Sep 17 00:00:00 2001 From: Clownacy Date: Sat, 2 May 2020 23:54:38 +0100 Subject: [PATCH] WiiU: Use different folder depending on language --- src/Backends/WiiU/Misc.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Backends/WiiU/Misc.cpp b/src/Backends/WiiU/Misc.cpp index 028c9b9b..578e1df3 100644 --- a/src/Backends/WiiU/Misc.cpp +++ b/src/Backends/WiiU/Misc.cpp @@ -57,7 +57,11 @@ void Backend_PostWindowCreation(void) bool Backend_GetBasePath(char *string_buffer) { strcpy(string_buffer, WHBGetSdCardMountPath()); - strcat(string_buffer, "/CSE2-portable"); +#ifdef JAPANESE + strcat(string_buffer, "/CSE2-portable-jp"); +#else + strcat(string_buffer, "/CSE2-portable-en"); +#endif return true; }