From cfdfe3e6e049d5bc87c540536ac750d005279acd Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 14 Dec 2022 18:35:39 +0100 Subject: [PATCH] Updated a log warning about extensionless files. --- es-app/src/GamelistFileParser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/GamelistFileParser.cpp b/es-app/src/GamelistFileParser.cpp index f3c316860..eebf13da1 100644 --- a/es-app/src/GamelistFileParser.cpp +++ b/es-app/src/GamelistFileParser.cpp @@ -39,7 +39,7 @@ namespace GamelistFileParser while (path_it != pathList.end()) { // Workaround for an extremely rare issue that can basically only happen if a dot (.) - // has been defined as a valid extension for the system (meaning extension-less files + // has been defined as a valid extension for the system (meaning extensionless files // are loaded), in combination with the "Only show ROMs from gamelist.xml files" option // being enabled and a stale entry being present in the gamelist.xml file that perfectly // matches a folder which is actually in use. The workaround is not a perfect solution @@ -47,7 +47,7 @@ namespace GamelistFileParser if (treeNode->getType() != FOLDER) { LOG(LogWarning) << "Invalid gamelist entry caused by folder having the same name as a stale " - << "extension-less game file (this may cause undefined behavior):"; + << "extensionless game file (this may cause undefined behavior):"; return nullptr; }