From 1dfad34eb0de13df2ebbd6ab99d0ae5afccbc34e Mon Sep 17 00:00:00 2001 From: Gemba Date: Mon, 4 Mar 2024 18:01:18 +0100 Subject: [PATCH] Version 3.10.3 --- VERSION | 2 +- src/emulationstation.cpp | 4 ---- src/xmlreader.cpp | 1 - 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/VERSION b/VERSION index fc7dadf0..5adaf3b7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -VERSION="3.10.2" +VERSION="3.10.3" diff --git a/src/emulationstation.cpp b/src/emulationstation.cpp index 0fcbc612..f75b48fe 100644 --- a/src/emulationstation.cpp +++ b/src/emulationstation.cpp @@ -148,10 +148,6 @@ void EmulationStation::preserveFromOld(GameEntry &entry) { bool EmulationStation::existingInGamelist(GameEntry &entry) { for (const auto &oldEntry : oldEntries) { - if (entry.path.contains("ddddd") && oldEntry.path.contains("ddddd")) { - qDebug() << "entry: " << entry.path; - qDebug() << "old : " << oldEntry.path; - } if (entry.path == oldEntry.path) { return true; } diff --git a/src/xmlreader.cpp b/src/xmlreader.cpp index 205ed17a..1d63dc07 100644 --- a/src/xmlreader.cpp +++ b/src/xmlreader.cpp @@ -71,7 +71,6 @@ void XmlReader::addEntries(const QDomNodeList &nodes, // Relative is saved from ES without trailing "./" QFileInfo pi(p); if (pi.isRelative() && !p.startsWith("./")) { - // qDebug() << "added ./ to " << p; p = "./" + p; } }