(Windows) Properly fixed a cosmetic log output issue when loading the game systems.

This commit is contained in:
Leon Styhre 2021-02-07 11:49:41 +01:00
parent 9be90fa39a
commit 9c2d582f7d

View file

@ -258,9 +258,8 @@ bool SystemData::loadConfig()
path = Utils::String::replace(path, "%ROMPATH%", rompath);
#if defined(_WIN64)
path = Utils::String::replace(path, "\\", "/");
#else
path = Utils::String::replace(path, "//", "/");
#endif
path = Utils::String::replace(path, "//", "/");
// Check that the ROM directory for the system is valid or otherwise abort the processing.
if (!Utils::FileSystem::exists(path)) {