mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
Format string fix.
svn-id: r13408
This commit is contained in:
parent
c831739c9c
commit
0fb1d56589
@ -1391,7 +1391,7 @@ int32 Insane::smush_setupSanWithFlu(const char *filename, int32 setupsan2, int32
|
||||
byte *tmp = fluPtr;
|
||||
int32 offset;
|
||||
|
||||
debugC(DEBUG_INSANE, "smush_setupSanWithFlu(%s, %d, %d, %d, %d, %lx, %d)", filename, setupsan2,
|
||||
debugC(DEBUG_INSANE, "smush_setupSanWithFlu(%s, %d, %d, %d, %d, %p, %d)", filename, setupsan2,
|
||||
step1, step2, setupsan1, fluPtr, numFrames);
|
||||
|
||||
_smush_setupsan1 = setupsan1;
|
||||
|
@ -276,7 +276,7 @@ void VorbisInputStream::refill() {
|
||||
warning("Corrupted data in Vorbis file");
|
||||
} else if (result <= 0) {
|
||||
if (result < 0)
|
||||
debug(1, "Decode error %d in Vorbis file", result);
|
||||
debug(1, "Decode error %ld in Vorbis file", result);
|
||||
// Don't delete it yet, that causes problems in
|
||||
// the CD player emulation code.
|
||||
memset(read_pos, 0, len_left);
|
||||
|
Loading…
Reference in New Issue
Block a user