WiiU: Use different folder depending on language
This commit is contained in:
parent
bdbebf9a35
commit
4895880682
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue