aboutsummaryrefslogtreecommitdiff
path: root/tools/qtable
diff options
context:
space:
mode:
authorMax Horn2008-02-25 14:13:12 +0000
committerMax Horn2008-02-25 14:13:12 +0000
commit07a7800ebd59c780e544928be72164aa04ffd826 (patch)
tree4c8a7cf7e353eaed8ffb735a8153bcaf7ef0a887 /tools/qtable
parent85393b6fa4a6ff5dbc9e599e88d273cf0362b2b8 (diff)
downloadscummvm-rg350-07a7800ebd59c780e544928be72164aa04ffd826.tar.gz
scummvm-rg350-07a7800ebd59c780e544928be72164aa04ffd826.tar.bz2
scummvm-rg350-07a7800ebd59c780e544928be72164aa04ffd826.zip
Moved tools to all-C++ code (ensures consistency of all code during compilation, and allows us to use advanced stuff, like code from common/, in the tools)
svn-id: r30963
Diffstat (limited to 'tools/qtable')
-rw-r--r--tools/qtable/qtable.cpp (renamed from tools/qtable/qtable.c)2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qtable/qtable.c b/tools/qtable/qtable.cpp
index 2a57bfa479..fe4eb07809 100644
--- a/tools/qtable/qtable.c
+++ b/tools/qtable/qtable.cpp
@@ -165,7 +165,7 @@ static void createTableFile(TableFile *tf) {
}
static void printGameVersionTable() {
- int i;
+ unsigned int i;
printf("const RetailGameVersion Resource::_gameVersions[] = {\n");
for (i = 0; i < ARRAYSIZE(gameVersionsTable); ++i) {
const GameVersion *gv = &gameVersionsTable[i];