diff options
-rw-r--r-- | scumm/sound.cpp | 2 | ||||
-rw-r--r-- | sound/voc.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 9b0abe5185..604875a952 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -808,7 +808,7 @@ void Sound::startSfxSound(File *file, int file_size, PlayingSoundHandle *handle, return; } - int32 size; + int size; int rate; byte *data = loadVOCFile(_sfxFile, size, rate); diff --git a/sound/voc.cpp b/sound/voc.cpp index b5ace31c02..25c15a9a2e 100644 --- a/sound/voc.cpp +++ b/sound/voc.cpp @@ -26,7 +26,7 @@ #include "sound/voc.h" -byte *readVOCFromMemory(byte *ptr, int32 &size, int &rate, int32 &loops) { +byte *readVOCFromMemory(byte *ptr, int &size, int &rate, int &loops) { assert(strncmp((char *)ptr, "Creative Voice File\x1A", 20) == 0); int32 offset = READ_LE_UINT16(ptr + 20); @@ -92,7 +92,7 @@ enum { // readCreativeVoc(). Obviously this is bad, it should rather use that function // (after some tweaks to readCreativeVoc, to deal with the alternate VTLK // header). -byte *loadVOCFile(File *file, int32 &size, int &rate) { +byte *loadVOCFile(File *file, int &size, int &rate) { char ident[8]; if (file->read(ident, 8) != 8) |