diff options
Diffstat (limited to 'engines')
-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 |