mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Added a new %GAMEDIR% variable to be used in conjunction with the %STARTDIR% variable.
This commit is contained in:
parent
7849b44664
commit
46790fc1cb
|
@ -1239,10 +1239,18 @@ void FileData::launchGame()
|
|||
startDirectory = Utils::String::replace(
|
||||
startDirectory, "%EMUDIR%",
|
||||
Utils::FileSystem::getParent(Utils::String::replace(binaryPath, "\"", "")));
|
||||
|
||||
startDirectory = Utils::String::replace(
|
||||
startDirectory, "%GAMEDIR%",
|
||||
Utils::FileSystem::getParent(Utils::String::replace(romPath, "\"", "")));
|
||||
#else
|
||||
startDirectory = Utils::String::replace(
|
||||
startDirectory, "%EMUDIR%",
|
||||
Utils::FileSystem::getParent(Utils::String::replace(binaryPath, "\\", "")));
|
||||
|
||||
startDirectory = Utils::String::replace(
|
||||
startDirectory, "%GAMEDIR%",
|
||||
Utils::FileSystem::getParent(Utils::String::replace(romPath, "\\", "")));
|
||||
#endif
|
||||
if (!Utils::FileSystem::isDirectory(startDirectory)) {
|
||||
Utils::FileSystem::createDirectory(startDirectory);
|
||||
|
|
Loading…
Reference in a new issue