diff options
author | James Brown | 2002-12-27 12:05:29 +0000 |
---|---|---|
committer | James Brown | 2002-12-27 12:05:29 +0000 |
commit | c21bd9015aa51792f531922a0ab8c839f99e8594 (patch) | |
tree | c8c652477083f195781741000cd8aafeda675f46 | |
parent | d3ade5b23e253c006eb5deca143a02e502e2cd7c (diff) | |
download | scummvm-rg350-c21bd9015aa51792f531922a0ab8c839f99e8594.tar.gz scummvm-rg350-c21bd9015aa51792f531922a0ab8c839f99e8594.tar.bz2 scummvm-rg350-c21bd9015aa51792f531922a0ab8c839f99e8594.zip |
Fix GCC3.1 compile problem
svn-id: r6194
-rw-r--r-- | scumm/bundle.cpp | 4 |
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) { |