Added additional debug logging when launching games using alternative emulators.

This commit is contained in:
Leon Styhre 2021-08-24 20:45:24 +02:00
parent 1461b2b0a7
commit ed9d978bbf

View file

@ -760,6 +760,9 @@ void FileData::launchGame(Window* window)
for (auto launchCommand : mEnvData->mLaunchCommands) {
if (launchCommand.second == alternativeEmulator) {
command = launchCommand.first;
LOG(LogDebug) << "FileData::launchGame(): Using alternative emulator \""
<< alternativeEmulator << "\""
<< " for system \"" << this->getSystem()->getName() << "\"";
break;
}
}