diff options
author | Marisa-Chan | 2014-01-17 11:10:17 +0700 |
---|---|---|
committer | Marisa-Chan | 2014-01-17 11:10:17 +0700 |
commit | 7b7ae43f7fe30782201fba691beee1bad18db60a (patch) | |
tree | e7cb90d67ccbde9dc7a55d61977dc9f50ea9a754 /engines/zvision/scr_file_handling.cpp | |
parent | d973b1fb1bde603b3b2436a58afcf043b178c407 (diff) | |
download | scummvm-rg350-7b7ae43f7fe30782201fba691beee1bad18db60a.tar.gz scummvm-rg350-7b7ae43f7fe30782201fba691beee1bad18db60a.tar.bz2 scummvm-rg350-7b7ae43f7fe30782201fba691beee1bad18db60a.zip |
ZVISION: Implement crossfade.
Diffstat (limited to 'engines/zvision/scr_file_handling.cpp')
-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 002871af0b..833db11ad1 100644 --- a/engines/zvision/scr_file_handling.cpp +++ b/engines/zvision/scr_file_handling.cpp @@ -220,7 +220,7 @@ void ScriptManager::parseResults(Common::SeekableReadStream &stream, Common::Lis } else if (act.matchString("change_location", true)) { actionList.push_back(new ActionChangeLocation(_engine, slot, args)); } else if (act.matchString("crossfade", true)) { - // TODO: Implement ActionCrossfade + actionList.push_back(new ActionCrossfade(_engine, slot, args)); } else if (act.matchString("debug", true)) { // TODO: Implement ActionDebug } else if (act.matchString("delay_render", true)) { |