mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 08:05:41 +00:00
Fix an outstanding forward slash showing in the UI
This commit is contained in:
parent
e8e461c0a7
commit
e6431e3599
|
@ -673,12 +673,12 @@ TinyString HostInterface::GetTimestampStringForFileName()
|
||||||
|
|
||||||
std::string HostInterface::GetSharedMemoryCardPath(u32 slot) const
|
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
|
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*/)
|
bool HostInterface::GetBoolSettingValue(const char* section, const char* key, bool default_value /*= false*/)
|
||||||
|
|
Loading…
Reference in a new issue