aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2016-09-22 20:44:42 -0400
committerPaul Gilbert2016-09-22 20:44:42 -0400
commit8a3bcd4c6075197d219324b27f4f721de27b6a5c (patch)
tree4c2326597aa04b162134526197c21a590bfa5c52
parent2e92f432bec2187b9db670955440e3c60f2e060c (diff)
downloadscummvm-rg350-8a3bcd4c6075197d219324b27f4f721de27b6a5c.tar.gz
scummvm-rg350-8a3bcd4c6075197d219324b27f4f721de27b6a5c.tar.bz2
scummvm-rg350-8a3bcd4c6075197d219324b27f4f721de27b6a5c.zip
XEEN: Fix compiler warning in Music class
-rw-r--r--engines/xeen/music.cpp2
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);