aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision
diff options
context:
space:
mode:
authorrichiesams2013-08-03 13:49:21 -0500
committerrichiesams2013-08-04 13:33:07 -0500
commitebe83ed3909de75f401278afbf85a02c9a9ccf1a (patch)
tree16ce18e61d6c71a355348e5a437f02bd48a719ad /engines/zvision
parent5ef19407b4b16943c33265df4dc388738e710522 (diff)
downloadscummvm-rg350-ebe83ed3909de75f401278afbf85a02c9a9ccf1a.tar.gz
scummvm-rg350-ebe83ed3909de75f401278afbf85a02c9a9ccf1a.tar.bz2
scummvm-rg350-ebe83ed3909de75f401278afbf85a02c9a9ccf1a.zip
ZVISION: Make panorama and tilt control generate the RenderTable after setting all the settings
Diffstat (limited to 'engines/zvision')
-rw-r--r--engines/zvision/control.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/zvision/control.cpp b/engines/zvision/control.cpp
index 986a7ae093..fdb88c68e1 100644
--- a/engines/zvision/control.cpp
+++ b/engines/zvision/control.cpp
@@ -66,6 +66,8 @@ void Control::parsePanoramaControl(ZVision *engine, Common::SeekableReadStream &
line = stream.readLine();
trimCommentsAndWhiteSpace(&line);
}
+
+ renderTable->generateRenderTable();
}
void Control::parseTiltControl(ZVision *engine, Common::SeekableReadStream &stream) {
@@ -96,6 +98,8 @@ void Control::parseTiltControl(ZVision *engine, Common::SeekableReadStream &stre
line = stream.readLine();
trimCommentsAndWhiteSpace(&line);
}
+
+ renderTable->generateRenderTable();
}
} // End of namespace ZVision