aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision
diff options
context:
space:
mode:
authorFilippos Karapetis2013-07-30 02:35:49 +0300
committerrichiesams2013-08-04 13:32:48 -0500
commit032afd3c1a6fe929cafde4f30f4c1e59b7ac6a89 (patch)
tree6e20c02c045f7c392fcb789eb61d33e79f97a1d0 /engines/zvision
parent1c551d43595a6acfb7f00bb3f0713435576e0f0e (diff)
downloadscummvm-rg350-032afd3c1a6fe929cafde4f30f4c1e59b7ac6a89.tar.gz
scummvm-rg350-032afd3c1a6fe929cafde4f30f4c1e59b7ac6a89.tar.bz2
scummvm-rg350-032afd3c1a6fe929cafde4f30f4c1e59b7ac6a89.zip
ZVISION: Fix compilation
Diffstat (limited to 'engines/zvision')
-rw-r--r--engines/zvision/render_table.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/render_table.cpp b/engines/zvision/render_table.cpp
index 0bd8f23e3d..e3ce77952b 100644
--- a/engines/zvision/render_table.cpp
+++ b/engines/zvision/render_table.cpp
@@ -32,7 +32,7 @@ namespace ZVision {
RenderTable::RenderTable(uint32 numColumns, uint32 numRows)
: _numRows(numRows),
_numColumns(numColumns),
- _renderState(RenderState::FLAT) {
+ _renderState(FLAT) {
assert(numRows != 0 && numColumns != 0);
_internalBuffer = new Vector2[numRows * numColumns];