diff options
-rw-r--r-- | engines/xeen/music.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |