From acfa7ff3e11bf9024451a6e3505f5f07d5646e1f Mon Sep 17 00:00:00 2001 From: RichieSams Date: Sat, 7 Sep 2013 18:05:15 -0500 Subject: ZVISION: Add scr parse line for ActionAssign It was already implemented, just not added to the scr parsing --- engines/zvision/scr_file_handling.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/zvision/scr_file_handling.cpp b/engines/zvision/scr_file_handling.cpp index 06767c5340..378408df66 100644 --- a/engines/zvision/scr_file_handling.cpp +++ b/engines/zvision/scr_file_handling.cpp @@ -168,7 +168,7 @@ void ScriptManager::parseResults(Common::SeekableReadStream &stream, Common::Lis } else if (line.matchString("*:attenuate*", true)) { // TODO: Implement ActionAttenuate } else if (line.matchString("*:assign*", true)) { - // TODO: Implement ActionAssign + actionList.push_back(new ActionAssign(line)); } else if (line.matchString("*:change_location*", true)) { actionList.push_back(new ActionChangeLocation(line)); } else if (line.matchString("*:crossfade*", true)) { -- cgit v1.2.3