Merge pull request #875 from CookiePLMonster/more-slashes

Fix an outstanding forward slash showing in the UI
This commit is contained in:
Connor McLaughlin 2020-09-23 22:55:40 +10:00 committed by GitHub
commit 40d157aa23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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*/)