aboutsummaryrefslogtreecommitdiff
path: root/simon/midi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simon/midi.cpp')
-rw-r--r--simon/midi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/midi.cpp b/simon/midi.cpp
index 663769ec55..42f86f627d 100644
--- a/simon/midi.cpp
+++ b/simon/midi.cpp
@@ -463,7 +463,7 @@ void MidiPlayer::loadS1D (File *in, bool sfx) {
uint32 size = in->readByte() | (in->readByte() << 8);
if (size != in->size() - 2) {
- printf ("ERROR! Size mismatch in simon1demo MUS file (%ld versus reported %d)\n", (long) in->size() - 2, (long) size);
+ printf ("ERROR! Size mismatch in simon1demo MUS file (%ld versus reported %ld)\n", (long) in->size() - 2, (long) size);
_system->unlock_mutex (_mutex);
return;
}