aboutsummaryrefslogtreecommitdiff
path: root/scumm/bundle.cpp
diff options
context:
space:
mode:
authorJames Brown2002-12-27 12:05:29 +0000
committerJames Brown2002-12-27 12:05:29 +0000
commitc21bd9015aa51792f531922a0ab8c839f99e8594 (patch)
treec8c652477083f195781741000cd8aafeda675f46 /scumm/bundle.cpp
parentd3ade5b23e253c006eb5deca143a02e502e2cd7c (diff)
downloadscummvm-rg350-c21bd9015aa51792f531922a0ab8c839f99e8594.tar.gz
scummvm-rg350-c21bd9015aa51792f531922a0ab8c839f99e8594.tar.bz2
scummvm-rg350-c21bd9015aa51792f531922a0ab8c839f99e8594.zip
Fix GCC3.1 compile problem
svn-id: r6194
Diffstat (limited to 'scumm/bundle.cpp')
-rw-r--r--scumm/bundle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/bundle.cpp b/scumm/bundle.cpp
index 4ee3bde054..001f9dbd05 100644
--- a/scumm/bundle.cpp
+++ b/scumm/bundle.cpp
@@ -221,7 +221,7 @@ int32 Bundle::decompressVoiceSampleByName(char *name, byte *comp_final) {
return final_size;
}
-int32 Bundle::decompressMusicSampleByName(char *name, int32 number, byte *comp_final, bool fuzzy=false) {
+int32 Bundle::decompressMusicSampleByName(char *name, int32 number, byte *comp_final, bool fuzzy) {
int32 final_size = 0, i;
if (!name) {
@@ -261,7 +261,7 @@ int32 Bundle::getNumberOfMusicSamplesByIndex(int32 index) {
return _musicFile.readUint32BE();
}
-int32 Bundle::getNumberOfMusicSamplesByName(char *name, bool fuzzy = false) {
+int32 Bundle::getNumberOfMusicSamplesByName(char *name, bool fuzzy) {
int32 number = 0, i;
if (_musicFile.isOpen() == false) {