(Linux) The 'flatpak-spawn --host' command is no longer included in the log output on game launch.

This commit is contained in:
Leon Styhre 2022-04-26 21:30:36 +02:00
parent b7d3b242fd
commit c63f34cdad

View file

@ -1184,16 +1184,16 @@ void FileData::launchGame()
getSourceFileData()->getSystem()->getFullName());
int returnValue = 0;
#if defined(FLATPAK_BUILD)
// Break out of the sandbox.
command = "flatpak-spawn --host " + command;
#endif
LOG(LogDebug) << "Raw emulator launch command:";
LOG(LogDebug) << commandRaw;
LOG(LogInfo) << "Expanded emulator launch command:";
LOG(LogInfo) << command;
#if defined(FLATPAK_BUILD)
// Break out of the sandbox.
command = "flatpak-spawn --host " + command;
#endif
// Possibly keep ES-DE running in the background while the game is launched.
#if defined(_WIN64)