From c3ff5f9d52d61fc7e731058c066b2c3df665a774 Mon Sep 17 00:00:00 2001 From: athrxx Date: Thu, 9 Jan 2020 21:27:09 +0100 Subject: KYRA: (LOK/Amiga) - fix save thumbnail colors (I probably broke that in 04e85a0f) --- engines/kyra/gui/gui_lok.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } } -- cgit v1.2.3