diff options
author | uruk | 2013-07-13 20:11:44 +0200 |
---|---|---|
committer | uruk | 2013-07-13 20:11:44 +0200 |
commit | bc15033c14f658a033460589ba5d1effb1538602 (patch) | |
tree | f1cc8f285e6168bf4aaf17b21dc589423502a7fc | |
parent | 58dc18a2da981273fd0fb10ba53274a14fec88e6 (diff) | |
download | scummvm-rg350-bc15033c14f658a033460589ba5d1effb1538602.tar.gz scummvm-rg350-bc15033c14f658a033460589ba5d1effb1538602.tar.bz2 scummvm-rg350-bc15033c14f658a033460589ba5d1effb1538602.zip |
AVALANCHE: Remove unnecessary comments from Lucerna::load().
-rw-r--r-- | engines/avalanche/lucerna2.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/avalanche/lucerna2.cpp b/engines/avalanche/lucerna2.cpp index e878e7760c..16da58cf54 100644 --- a/engines/avalanche/lucerna2.cpp +++ b/engines/avalanche/lucerna2.cpp @@ -251,8 +251,7 @@ void Lucerna::load(byte n) { /* Load2, actually */ byte pixel = f.readByte(); for (byte i = 0; i < 8; i++) { byte pixelBit = (pixel >> i) & 1; - //for (byte j = 0; j < 2; j++) // We draw every line twice to reach 400 picture height. - *(byte *)background.getBasePtr(x + 7 - i, y /** 2 + j*/) += (pixelBit << plane); + *(byte *)background.getBasePtr(x + 7 - i, y) += (pixelBit << plane); } } |