aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glulxe
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/glulxe
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/glulxe')
-rw-r--r--engines/glk/glulxe/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/glulxe/detection.cpp b/engines/glk/glulxe/detection.cpp
index 9314470a1b..c2e19de4e9 100644
--- a/engines/glk/glulxe/detection.cpp
+++ b/engines/glk/glulxe/detection.cpp
@@ -89,7 +89,7 @@ bool GlulxeMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &
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 PlainGameDescriptor &desc = GLULXE_GAME_LIST[0];
gd = DetectedGame(desc.gameId, desc.description, Common::UNK_LANG, Common::kPlatformUnknown);