aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/tads
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-09 08:49:20 -0800
committerPaul Gilbert2018-12-09 08:49:20 -0800
commit1156aca3e5961e1ec5f4de3dd0bb221d0dc2f994 (patch)
treef8bd9664b77be09d5c1e1f32b6d62c0a3fff06ea /engines/glk/tads
parentd55e63dbcffda12322e1ac3c10f2bdd790d82e43 (diff)
downloadscummvm-rg350-1156aca3e5961e1ec5f4de3dd0bb221d0dc2f994.tar.gz
scummvm-rg350-1156aca3e5961e1ec5f4de3dd0bb221d0dc2f994.tar.bz2
scummvm-rg350-1156aca3e5961e1ec5f4de3dd0bb221d0dc2f994.zip
GLK: Fix compiler warnings
Diffstat (limited to 'engines/glk/tads')
-rw-r--r--engines/glk/tads/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/tads/detection.cpp b/engines/glk/tads/detection.cpp
index d33cb5d7e1..df7eee1585 100644
--- a/engines/glk/tads/detection.cpp
+++ b/engines/glk/tads/detection.cpp
@@ -79,7 +79,7 @@ bool TADSMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &ga
if (dot)
fname = Common::String(fname.c_str(), dot);
- debug("ENTRY0(\"%s\", \"%s\", %u),", fname.c_str(), md5.c_str(), filesize);
+ debug("ENTRY0(\"%s\", \"%s\", %u),", fname.c_str(), md5.c_str(), (uint)filesize);
}
const TADSDescriptor &desc = TADS_GAME_LIST[0];
gd = DetectedGame(desc.gameId, desc.description, Common::UNK_LANG, Common::kPlatformUnknown);