From 7a3518d7c3c81b2e34dcbba0682dd8dc6e43b80d Mon Sep 17 00:00:00 2001 From: Marisa-Chan Date: Thu, 17 Oct 2013 21:24:50 +0000 Subject: ZVISION: Streamvideo alwayas skippable. Skippable flag renamed to skipline. --- engines/zvision/actions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines') diff --git a/engines/zvision/actions.cpp b/engines/zvision/actions.cpp index eae4ec2ed5..fbf2a58ad6 100644 --- a/engines/zvision/actions.cpp +++ b/engines/zvision/actions.cpp @@ -354,12 +354,12 @@ bool ActionSetScreen::execute(ZVision *engine) { ActionStreamVideo::ActionStreamVideo(const Common::String &line) { char fileName[25]; - uint skippable; + uint skipline; //skipline - render video with skip every second line, not skippable. - sscanf(line.c_str(), "%*[^(](%25s %u %u %u %u %u %u)", fileName, &_x1, &_y1, &_x2, &_y2, &_flags, &skippable); + sscanf(line.c_str(), "%*[^(](%25s %u %u %u %u %u %u)", fileName, &_x1, &_y1, &_x2, &_y2, &_flags, &skipline); _fileName = Common::String(fileName); - _skippable = (skippable == 0) ? false : true; + _skippable = true; } bool ActionStreamVideo::execute(ZVision *engine) { -- cgit v1.2.3