ref: 4895880682ea7fe096f54127bfa499f7284327fa
parent: bdbebf9a351fe2ca1ff6fd9aeabf17440e9effae
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sat May 2 19:54:38 EDT 2020
WiiU: Use different folder depending on language
--- a/src/Backends/WiiU/Misc.cpp
+++ b/src/Backends/WiiU/Misc.cpp
@@ -57,7 +57,11 @@
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;
}