From 9c2d582f7d9751fa092682b70da6670f60c86b49 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 7 Feb 2021 11:49:41 +0100 Subject: [PATCH] (Windows) Properly fixed a cosmetic log output issue when loading the game systems. --- es-app/src/SystemData.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/es-app/src/SystemData.cpp b/es-app/src/SystemData.cpp index a4fe8fc8b..b63c2c8bd 100644 --- a/es-app/src/SystemData.cpp +++ b/es-app/src/SystemData.cpp @@ -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)) {