diff options
author | richiesams | 2013-08-05 11:55:52 -0500 |
---|---|---|
committer | richiesams | 2013-08-05 11:55:52 -0500 |
commit | 76d4fb569d2d158ca05b3fb09095efc35ed27a12 (patch) | |
tree | 27926d4a0be2494e9c979106a12b01595c678f4c | |
parent | 6564dc044407d1df9adee74de3376b75114844e1 (diff) | |
download | scummvm-rg350-76d4fb569d2d158ca05b3fb09095efc35ed27a12.tar.gz scummvm-rg350-76d4fb569d2d158ca05b3fb09095efc35ed27a12.tar.bz2 scummvm-rg350-76d4fb569d2d158ca05b3fb09095efc35ed27a12.zip |
ZVISION: Comment out usage of ActionUnloadAnimation until it is implemented
-rw-r--r-- | engines/zvision/scr_file_handling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/scr_file_handling.cpp b/engines/zvision/scr_file_handling.cpp index 9759fd89b1..06fb0fab89 100644 --- a/engines/zvision/scr_file_handling.cpp +++ b/engines/zvision/scr_file_handling.cpp @@ -150,7 +150,7 @@ void ScriptManager::parseResults(Common::SeekableReadStream &stream, Common::Lis } else if (line.matchString("*:animpreload*", true)) { actionList.push_back(Common::SharedPtr<ResultAction>(new ActionPreloadAnimation(line))); } else if (line.matchString("*:animunload*", true)) { - actionList.push_back(Common::SharedPtr<ResultAction>(new ActionUnloadAnimation(line))); + //actionList.push_back(Common::SharedPtr<ResultAction>(new ActionUnloadAnimation(line))); } else if (line.matchString("*:attenuate*", true)) { |