mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 18:45:45 -04:00
Common/FileSystem: Fix misspelling of 'separator'
This commit is contained in:

committed by
Connor McLaughlin

parent
d0398c8a83
commit
7a40a843d4
@ -1157,9 +1157,9 @@ std::string GameList::GetCoverImagePathForEntry(const GameListEntry* entry) cons
|
||||
{
|
||||
cover_path.Clear();
|
||||
cover_path.AppendString(g_host_interface->GetUserDirectory().c_str());
|
||||
cover_path.AppendCharacter(FS_OSPATH_SEPERATOR_CHARACTER);
|
||||
cover_path.AppendCharacter(FS_OSPATH_SEPARATOR_CHARACTER);
|
||||
cover_path.AppendString("covers");
|
||||
cover_path.AppendCharacter(FS_OSPATH_SEPERATOR_CHARACTER);
|
||||
cover_path.AppendCharacter(FS_OSPATH_SEPARATOR_CHARACTER);
|
||||
cover_path.AppendString(file_title.data(), static_cast<u32>(file_title.size()));
|
||||
cover_path.AppendCharacter('.');
|
||||
cover_path.AppendString(extension);
|
||||
|
Reference in New Issue
Block a user