mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
(Windows) Properly fixed a cosmetic log output issue when loading the game systems.
This commit is contained in:
parent
9be90fa39a
commit
9c2d582f7d
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue