WiiU: Use different folder depending on language

This commit is contained in:
Clownacy 2020-05-02 23:54:38 +01:00
parent bdbebf9a35
commit 4895880682

View file

@ -57,7 +57,11 @@ void Backend_PostWindowCreation(void)
bool Backend_GetBasePath(char *string_buffer) bool Backend_GetBasePath(char *string_buffer)
{ {
strcpy(string_buffer, WHBGetSdCardMountPath()); 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; return true;
} }