diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/gui/gui_lok.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/gui/gui_lok.cpp b/engines/kyra/gui/gui_lok.cpp index 96a10f0bab..b2971757ce 100644 --- a/engines/kyra/gui/gui_lok.cpp +++ b/engines/kyra/gui/gui_lok.cpp @@ -209,7 +209,7 @@ void GUI_LoK::createScreenThumbnail(Graphics::Surface &dst) { if (_screen->isInterfacePaletteEnabled()) { for (int y = 0; y < 64; ++y) { for (int x = 0; x < 320; ++x) { - screen[(y + 136) * Screen::SCREEN_W + x] += 32; + screen[(y + 136) * Screen::SCREEN_W + x] |= 0x20; } } } |