diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index 356ba681e..7f4218c37 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -729,12 +729,12 @@ TinyString HostInterface::GetTimestampStringForFileName() std::string HostInterface::GetSharedMemoryCardPath(u32 slot) const { - return GetUserDirectoryRelativePath("memcards/shared_card_%d.mcd", slot + 1); + return GetUserDirectoryRelativePath("memcards" FS_OSPATH_SEPARATOR_STR "shared_card_%u.mcd", slot + 1); } std::string HostInterface::GetGameMemoryCardPath(const char* game_code, u32 slot) const { - return GetUserDirectoryRelativePath("memcards/%s_%d.mcd", game_code, slot + 1); + return GetUserDirectoryRelativePath("memcards" FS_OSPATH_SEPARATOR_STR "%s_%u.mcd", game_code, slot + 1); } bool HostInterface::GetBoolSettingValue(const char* section, const char* key, bool default_value /*= false*/)