diff options
author | Rodrigo Rebello | 2013-10-03 01:47:02 -0300 |
---|---|---|
committer | Rodrigo Rebello | 2013-10-03 01:47:02 -0300 |
commit | be2f292457607921d60355ac21dbeddaf30584da (patch) | |
tree | 3b49f1749099965f3e6224122c9b5b746feb53fc /engines/scumm/imuse_digi | |
parent | 77dad77a4cc01f6427134fde9d95ae59fcab3872 (diff) | |
download | scummvm-rg350-be2f292457607921d60355ac21dbeddaf30584da.tar.gz scummvm-rg350-be2f292457607921d60355ac21dbeddaf30584da.tar.bz2 scummvm-rg350-be2f292457607921d60355ac21dbeddaf30584da.zip |
SCUMM: Fix unused variable warnings
Diffstat (limited to 'engines/scumm/imuse_digi')
-rw-r--r-- | engines/scumm/imuse_digi/dimuse_sndmgr.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp index abd0d68e56..af4f8775f4 100644 --- a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp +++ b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp @@ -667,15 +667,18 @@ int32 ImuseDigiSndMgr::getDataFromRegion(SoundDesc *soundDesc, int region, byte if (scumm_stricmp(fileName, soundDesc->lastFileName) != 0) { int32 offs = 0, len = 0; Common::SeekableReadStream *cmpFile; +#if defined(USE_FLAC) || defined(USE_VORBIS) || defined(USE_MAD) uint8 soundMode = 0; +#endif sprintf(fileName, "%s_reg%03d.fla", soundDesc->name, region); cmpFile = soundDesc->bundle->getFile(fileName, offs, len); if (len) { #ifndef USE_FLAC error("FLAC library compiled support needed"); -#endif +#else soundMode = 3; +#endif } if (!len) { sprintf(fileName, "%s_reg%03d.ogg", soundDesc->name, region); @@ -683,8 +686,9 @@ int32 ImuseDigiSndMgr::getDataFromRegion(SoundDesc *soundDesc, int region, byte if (len) { #ifndef USE_VORBIS error("Vorbis library compiled support needed"); -#endif +#else soundMode = 2; +#endif } } if (!len) { @@ -693,8 +697,9 @@ int32 ImuseDigiSndMgr::getDataFromRegion(SoundDesc *soundDesc, int region, byte if (len) { #ifndef USE_MAD error("Mad library compiled support needed"); -#endif +#else soundMode = 1; +#endif } } assert(len); |