diff options
author | richiesams | 2013-08-03 17:25:05 -0500 |
---|---|---|
committer | richiesams | 2013-08-04 13:33:12 -0500 |
commit | c828074df9384b1e6eb3176d346ffc1b18dd2b11 (patch) | |
tree | 4856de44d11ffcff7df9f072856491bd2fa90872 /engines | |
parent | 3fd5a8ab5a626998a358282e3af7668f3bdd9403 (diff) | |
download | scummvm-rg350-c828074df9384b1e6eb3176d346ffc1b18dd2b11.tar.gz scummvm-rg350-c828074df9384b1e6eb3176d346ffc1b18dd2b11.tar.bz2 scummvm-rg350-c828074df9384b1e6eb3176d346ffc1b18dd2b11.zip |
ZVISION: Remove extraneous comments
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/render_table.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/zvision/render_table.cpp b/engines/zvision/render_table.cpp index 55c11ec4ba..b6598c12b2 100644 --- a/engines/zvision/render_table.cpp +++ b/engines/zvision/render_table.cpp @@ -150,8 +150,8 @@ void RenderTable::generatePanoramaLookupTable() { uint32 index = y * _numColumns + x; // Only store the x,y offsets instead of the absolute positions - _internalBuffer[index].x = newX - x; //pixel index - _internalBuffer[index].y = newY - y; //pixel index + _internalBuffer[index].x = newX - x; + _internalBuffer[index].y = newY - y; } } } |