diff options
author | Eugene Sandulenko | 2013-10-17 13:47:16 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-10-17 13:47:16 +0300 |
commit | 985491193258b3981db6a1879291e24ef4e3ed98 (patch) | |
tree | f6f96a4c4e269dff8cccf92012c78d5913b13adc /engines/drascula | |
parent | b0ade3a637be7a2b324a75d6d667d546975cbf82 (diff) | |
download | scummvm-rg350-985491193258b3981db6a1879291e24ef4e3ed98.tar.gz scummvm-rg350-985491193258b3981db6a1879291e24ef4e3ed98.tar.bz2 scummvm-rg350-985491193258b3981db6a1879291e24ef4e3ed98.zip |
DRASCULA: Give hint about unused return value. CID 1003863
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/animation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/drascula/animation.cpp b/engines/drascula/animation.cpp index 1145c8c3ff..ee981c36da 100644 --- a/engines/drascula/animation.cpp +++ b/engines/drascula/animation.cpp @@ -1645,10 +1645,10 @@ void DrasculaEngine::animation_9_6() { int v_cd; - animate("fin.bin", 14); + (void)animate("fin.bin", 14); playMusic(13); flags[5] = 1; - animate("drf.bin", 16); + (void)animate("drf.bin", 16); fadeToBlack(0); clearRoom(); curX = -1; |