From 8a3bcd4c6075197d219324b27f4f721de27b6a5c Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Thu, 22 Sep 2016 20:44:42 -0400 Subject: XEEN: Fix compiler warning in Music class --- engines/xeen/music.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/xeen/music.cpp b/engines/xeen/music.cpp index e9311e9490..1d00fdbd21 100644 --- a/engines/xeen/music.cpp +++ b/engines/xeen/music.cpp @@ -76,7 +76,7 @@ void MusicDriver::execute() { // Main loop bool breakFlag = false; while (!breakFlag) { - debugCN(3, kDebugSound, "MUSCODE %.4x - %.2x ", (srcP - startP), *srcP); + debugCN(3, kDebugSound, "MUSCODE %.4x - %.2x ", (uint)(srcP - startP), (uint)*srcP); byte nextByte = *srcP++; int cmd = (nextByte >> 4) & 15; int param = (nextByte & 15); -- cgit v1.2.3