From 1461b2b0a713140b5b8fbcab7e25697cfc7f6cfa Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 24 Aug 2021 20:44:34 +0200 Subject: [PATCH] Changed two error log messages related to alternative emulators. --- es-app/src/SystemData.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/SystemData.cpp b/es-app/src/SystemData.cpp index 630db6fb8..78eee2c16 100644 --- a/es-app/src/SystemData.cpp +++ b/es-app/src/SystemData.cpp @@ -486,7 +486,7 @@ bool SystemData::loadConfig() // The first command tag had a label but the second one doesn't. LOG(LogError) << "Missing mandatory label attribute for alternative emulator " - "entry, only the default command tag will be processed for system \"" + "entry, only the first command tag will be processed for system \"" << name << "\""; break; } @@ -503,7 +503,7 @@ bool SystemData::loadConfig() // There are more than one command tags and the first tag did not have a label. LOG(LogError) << "Missing mandatory label attribute for alternative emulator " - "entry, only the default command tag will be processed for system \"" + "entry, only the first command tag will be processed for system \"" << name << "\""; break; }