mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 15:45:38 +00:00
(Windows) Removed a launch command hack that deleted double quotation marks
This commit is contained in:
parent
5c700fa392
commit
d033e27da5
|
@ -1600,12 +1600,6 @@ void FileData::launchGame()
|
||||||
// Trim any leading and trailing whitespace characters as they could cause launch issues.
|
// Trim any leading and trailing whitespace characters as they could cause launch issues.
|
||||||
command = Utils::String::trim(command);
|
command = Utils::String::trim(command);
|
||||||
|
|
||||||
#if defined(_WIN64)
|
|
||||||
// Hack to be able to surround paths with quotation marks when using the %ROMPATH% and
|
|
||||||
// %EMUDIR% variables.
|
|
||||||
command = Utils::String::replace(command, "\"\"", "");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// swapBuffers() is called here to turn the screen black to eliminate some potential
|
// swapBuffers() is called here to turn the screen black to eliminate some potential
|
||||||
// flickering and to avoid showing the game launch message briefly when returning
|
// flickering and to avoid showing the game launch message briefly when returning
|
||||||
// from the game.
|
// from the game.
|
||||||
|
|
Loading…
Reference in a new issue