From ed9d978bbfdab3663b675776860a7f8d3c829d50 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 24 Aug 2021 20:45:24 +0200 Subject: [PATCH] Added additional debug logging when launching games using alternative emulators. --- es-app/src/FileData.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/es-app/src/FileData.cpp b/es-app/src/FileData.cpp index 512cdb106..9e9a64e04 100644 --- a/es-app/src/FileData.cpp +++ b/es-app/src/FileData.cpp @@ -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; } }