From c38a8aa857f1b1dd7ea3a1916d874bc19b139459 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Wed, 15 Apr 2020 22:10:53 +0100 Subject: [PATCH] Read files from `SD/CSE2-portable` on Wii U --- src/Backends/WiiU/Misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Backends/WiiU/Misc.cpp b/src/Backends/WiiU/Misc.cpp index 8921c04a..f940b375 100644 --- a/src/Backends/WiiU/Misc.cpp +++ b/src/Backends/WiiU/Misc.cpp @@ -40,7 +40,7 @@ void Backend_PostWindowCreation(void) bool Backend_GetBasePath(char *string_buffer) { strcpy(string_buffer, WHBGetSdCardMountPath()); - strcat(string_buffer, "/CSE2"); + strcat(string_buffer, "/CSE2-portable"); return true; }