mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
(Windows) Fixed a compiler error.
This commit is contained in:
parent
e608b1546d
commit
079f1bc102
|
@ -1031,12 +1031,13 @@ void FileData::launchGame()
|
|||
window->setAllowFileAnimation(true);
|
||||
return;
|
||||
}
|
||||
else if (!isShortcut) {
|
||||
#if defined(_WIN64)
|
||||
else {
|
||||
LOG(LogDebug) << "FileData::launchGame(): Found emulator binary "
|
||||
<< Utils::String::replace(
|
||||
Utils::String::replace(binaryPath, "%ESPATH%", esPath), "/", "\\");
|
||||
#else
|
||||
else if (!isShortcut) {
|
||||
LOG(LogDebug) << "FileData::launchGame(): Found emulator binary \""
|
||||
<< Utils::String::replace(binaryPath, "%ESPATH%", esPath) << "\"";
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue