diff options
author | Filippos Karapetis | 2014-12-19 13:32:51 +0200 |
---|---|---|
committer | Filippos Karapetis | 2014-12-19 13:32:51 +0200 |
commit | a4c5e140e20a9dd1f23ca19c7449395726b7ec3b (patch) | |
tree | 6cafed74e960875475ad1d4a9a8b1805636f023a /engines/zvision/graphics/render_table.cpp | |
parent | e0cb8f52f73ba927d5bf24c9b44f6d28743509df (diff) | |
parent | 5fb33ee5e7c99f76ba9560b56177041d19fb602e (diff) | |
download | scummvm-rg350-a4c5e140e20a9dd1f23ca19c7449395726b7ec3b.tar.gz scummvm-rg350-a4c5e140e20a9dd1f23ca19c7449395726b7ec3b.tar.bz2 scummvm-rg350-a4c5e140e20a9dd1f23ca19c7449395726b7ec3b.zip |
Merge pull request #549 from Marisa-Chan/master
ZVISION: Delete unused code
Diffstat (limited to 'engines/zvision/graphics/render_table.cpp')
-rw-r--r-- | engines/zvision/graphics/render_table.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/zvision/graphics/render_table.cpp b/engines/zvision/graphics/render_table.cpp index 54faecfa8b..c30e0bd472 100644 --- a/engines/zvision/graphics/render_table.cpp +++ b/engines/zvision/graphics/render_table.cpp @@ -34,6 +34,9 @@ RenderTable::RenderTable(uint numColumns, uint numRows) assert(numRows != 0 && numColumns != 0); _internalBuffer = new Common::Point[numRows * numColumns]; + + memset(&_panoramaOptions, 0, sizeof(_panoramaOptions)); + memset(&_tiltOptions, 0, sizeof(_tiltOptions)); } RenderTable::~RenderTable() { |