aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/scripting/scr_file_handling.cpp
diff options
context:
space:
mode:
authorMarisa-Chan2014-11-08 13:08:40 +0600
committerMarisa-Chan2014-11-08 13:08:40 +0600
commitbe5860b93af1d17d31e9430fc096ef02683324ee (patch)
tree8b3579126fc66e554c5daa1d31401709144d477e /engines/zvision/scripting/scr_file_handling.cpp
parentea8cc34a66f7b8a853d396daaade9de25efb431f (diff)
downloadscummvm-rg350-be5860b93af1d17d31e9430fc096ef02683324ee.tar.gz
scummvm-rg350-be5860b93af1d17d31e9430fc096ef02683324ee.tar.bz2
scummvm-rg350-be5860b93af1d17d31e9430fc096ef02683324ee.zip
ZVISION: Change comments of not implemented actions
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 d5f5704f2a..de092183c6 100644
--- a/engines/zvision/scripting/scr_file_handling.cpp
+++ b/engines/zvision/scripting/scr_file_handling.cpp
@@ -230,7 +230,7 @@ void ScriptManager::parseResults(Common::SeekableReadStream &stream, Common::Lis
} else if (act.matchString("crossfade", true)) {
actionList.push_back(new ActionCrossfade(_engine, slot, args));
} else if (act.matchString("debug", true)) {
- // TODO: Implement ActionDebug
+ // Not used. Purposely left empty
} else if (act.matchString("delay_render", true)) {
actionList.push_back(new ActionDelayRender(_engine, slot, args));
} else if (act.matchString("disable_control", true)) {
@@ -272,7 +272,7 @@ void ScriptManager::parseResults(Common::SeekableReadStream &stream, Common::Lis
} else if (act.matchString("rotate_to", true)) {
actionList.push_back(new ActionRotateTo(_engine, slot, args));
} else if (act.matchString("save_game", true)) {
- // TODO: Implement ActionSaveGame
+ // Not used. Purposely left empty
} else if (act.matchString("set_partial_screen", true)) {
actionList.push_back(new ActionSetPartialScreen(_engine, slot, args));
} else if (act.matchString("set_screen", true)) {