aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche')
-rw-r--r--engines/avalanche/lucerna2.cpp3
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);
}
}