mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 20:17:49 +00:00
Prevent another pointless warning
svn-id: r5874
This commit is contained in:
parent
359f65066a
commit
1715a60b26
@ -94,7 +94,7 @@ void SimonSound::readSfxFile(const char *filename, const char *gameDataPath)
|
||||
file->open(filename, gameDataPath);
|
||||
|
||||
if (file->isOpen() == false) {
|
||||
if (atoi(filename + 6) != 1)
|
||||
if (atoi(filename + 6) != 1 && atoi(filename + 6) != 30)
|
||||
warning("readSfxFile: Cannot load sfx file %s", filename);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user