summaryrefslogtreecommitdiffhomepage
path: root/csv
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-07-24 03:41:04 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-07-24 03:41:04 +0200
commit3f15d496d65600fdd53f0b91a39a8cd5d2d91f7d (patch)
tree16ff4fbe0e6c6830e94b85f2b63d0276e2b04ae1 /csv
parent9e56a379b69d3286c5bbba84d5e887528bb3ac78 (diff)
csv: output game id at right place
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;
}