diff options
author | Travis Howell | 2008-03-26 04:04:14 +0000 |
---|---|---|
committer | Travis Howell | 2008-03-26 04:04:14 +0000 |
commit | 44200b4ac6a9d77f90e512914e9aa8e2f219c68b (patch) | |
tree | ef928633d62f309457d89b6e418e99bb9367b99d /engines/agos | |
parent | 10be4b2a6d2f9542ddae8b4e86097ff2470280de (diff) | |
download | scummvm-rg350-44200b4ac6a9d77f90e512914e9aa8e2f219c68b.tar.gz scummvm-rg350-44200b4ac6a9d77f90e512914e9aa8e2f219c68b.tar.bz2 scummvm-rg350-44200b4ac6a9d77f90e512914e9aa8e2f219c68b.zip |
Remove error for missing sound files in The Feeble Files, due to fault in French version.
svn-id: r31239
Diffstat (limited to 'engines/agos')
-rw-r--r-- | engines/agos/res_snd.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/agos/res_snd.cpp b/engines/agos/res_snd.cpp index 091a254fbc..8d9ef69171 100644 --- a/engines/agos/res_snd.cpp +++ b/engines/agos/res_snd.cpp @@ -536,9 +536,6 @@ void AGOSEngine::loadSound(uint sound, int pan, int vol, uint type) { dst = (byte *)malloc(dstSize); decompressData(filename, dst, offset, srcSize, dstSize); } else { - if (!_curSfxFile) - error("loadSound: Can't load sound data file '%d3.VGA'", _zoneNumber); - dst = _curSfxFile + READ_LE_UINT32(_curSfxFile + sound * 4); } |