aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/scripting/scr_file_handling.cpp
diff options
context:
space:
mode:
authorMarisa-Chan2014-11-08 12:44:00 +0600
committerMarisa-Chan2014-11-08 12:44:00 +0600
commit7ddfcfd17ec1e367896c223d5b8dc59b44d4029e (patch)
tree5b463c19667045fd5f64bf815a11d0a72ab54bdd /engines/zvision/scripting/scr_file_handling.cpp
parentd0f6b61d7d86598c71c7ff8679f610bbd1341aaa (diff)
downloadscummvm-rg350-7ddfcfd17ec1e367896c223d5b8dc59b44d4029e.tar.gz
scummvm-rg350-7ddfcfd17ec1e367896c223d5b8dc59b44d4029e.tar.bz2
scummvm-rg350-7ddfcfd17ec1e367896c223d5b8dc59b44d4029e.zip
ZVISION: Implement action:disable_venus and action:set_venus
Diffstat (limited to 'engines/zvision/scripting/scr_file_handling.cpp')
-rw-r--r--engines/zvision/scripting/scr_file_handling.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/zvision/scripting/scr_file_handling.cpp b/engines/zvision/scripting/scr_file_handling.cpp
index 68840aa413..c7268e6111 100644
--- a/engines/zvision/scripting/scr_file_handling.cpp
+++ b/engines/zvision/scripting/scr_file_handling.cpp
@@ -236,7 +236,7 @@ void ScriptManager::parseResults(Common::SeekableReadStream &stream, Common::Lis
} else if (act.matchString("disable_control", true)) {
actionList.push_back(new ActionDisableControl(_engine, slot, args));
} else if (act.matchString("disable_venus", true)) {
- // TODO: Implement ActionDisableVenus
+ actionList.push_back(new ActionDisableVenus(_engine, slot, args));
} else if (act.matchString("display_message", true)) {
actionList.push_back(new ActionDisplayMessage(_engine, slot, args));
} else if (act.matchString("dissolve", true)) {
@@ -278,7 +278,7 @@ void ScriptManager::parseResults(Common::SeekableReadStream &stream, Common::Lis
} else if (act.matchString("set_screen", true)) {
actionList.push_back(new ActionSetScreen(_engine, slot, args));
} else if (act.matchString("set_venus", true)) {
- // TODO: Implement ActionSetVenus
+ actionList.push_back(new ActionSetVenus(_engine, slot, args));
} else if (act.matchString("stop", true)) {
actionList.push_back(new ActionStop(_engine, slot, args));
} else if (act.matchString("streamvideo", true)) {