summaryrefslogtreecommitdiffhomepage
path: root/csv
diff options
context:
space:
mode:
Diffstat (limited to 'csv')
-rw-r--r--csv/csv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/csv/csv.cpp b/csv/csv.cpp
index 7b084c06..76f8b56f 100644
--- a/csv/csv.cpp
+++ b/csv/csv.cpp
@@ -96,6 +96,7 @@ bool CSV::getGameData(int id, unsigned char* table, QString& gamename)
for (int i = 0; i < 8; i++)
table[i] = 0;
+ qDebug() << "csv: lookup game id" << id;
QString id_str(QString::number(id));
static const QString csv_path(OPENTRACK_BASE_PATH +
@@ -166,7 +167,6 @@ bool CSV::getGameData(int id, unsigned char* table, QString& gamename)
table[i] = t(tmp[i]);
}
}
- qDebug() << "csv: game-id" << id_str << "proto" << proto;
gamename = move(name);
return true;
}