diff options
author | Max Horn | 2003-05-25 10:14:21 +0000 |
---|---|---|
committer | Max Horn | 2003-05-25 10:14:21 +0000 |
commit | 9151ff2636642253e6bdd5fb496a9bf1d18b90b4 (patch) | |
tree | 18e65ab18e9737879a3fb56baa77ec1c59915ad2 | |
parent | d81f7ce7598109067d0d0f3221f9b499f35bacaa (diff) | |
download | scummvm-rg350-9151ff2636642253e6bdd5fb496a9bf1d18b90b4.tar.gz scummvm-rg350-9151ff2636642253e6bdd5fb496a9bf1d18b90b4.tar.bz2 scummvm-rg350-9151ff2636642253e6bdd5fb496a9bf1d18b90b4.zip |
fixed format string
svn-id: r7931
-rw-r--r-- | simon/midi.cpp | 2 |
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; } |