Skip to content

Commit

Permalink
Version 3.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Gemba committed Mar 4, 2024
1 parent c06e366 commit 1dfad34
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION="3.10.2"
VERSION="3.10.3"
4 changes: 0 additions & 4 deletions src/emulationstation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
1 change: 0 additions & 1 deletion src/xmlreader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ void XmlReader::addEntries(const QDomNodeList &nodes,
// Relative <folder><path> is saved from ES without trailing "./"
QFileInfo pi(p);
if (pi.isRelative() && !p.startsWith("./")) {
// qDebug() << "added ./ to " << p;
p = "./" + p;
}
}
Expand Down

0 comments on commit 1dfad34

Please sign in to comment.