From 3aadc42c28c1659812e25f38739481fe66e0a2a3 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 29 Jun 2022 17:19:28 +0200 Subject: [PATCH] Added an es_log.txt entry when the 'Only show ROMs from gamelist.xml files' setting is enabled. --- es-app/src/SystemData.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/es-app/src/SystemData.cpp b/es-app/src/SystemData.cpp index 0bbcac17f..8b900de82 100644 --- a/es-app/src/SystemData.cpp +++ b/es-app/src/SystemData.cpp @@ -418,6 +418,10 @@ bool SystemData::loadConfig() LOG(LogInfo) << "Populating game systems..."; + if (Settings::getInstance()->getBool("ParseGamelistOnly")) { + LOG(LogInfo) << "Only parsing the gamelist.xml files, not scanning system directories"; + } + std::vector configPaths = getConfigPath(true); const std::string rompath = FileData::getROMDirectory();