diff options
author | richiesams | 2013-08-03 13:49:21 -0500 |
---|---|---|
committer | richiesams | 2013-08-04 13:33:07 -0500 |
commit | ebe83ed3909de75f401278afbf85a02c9a9ccf1a (patch) | |
tree | 16ce18e61d6c71a355348e5a437f02bd48a719ad /engines/zvision | |
parent | 5ef19407b4b16943c33265df4dc388738e710522 (diff) | |
download | scummvm-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.cpp | 4 |
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 |