aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorathrxx2020-01-09 21:27:09 +0100
committerathrxx2020-01-09 21:39:48 +0100
commitc3ff5f9d52d61fc7e731058c066b2c3df665a774 (patch)
tree9073e937b967dd7a7552c7ee999ee56a2922b899
parentb521eb3fd43c77f04e7de59450d132afd881d6fa (diff)
downloadscummvm-rg350-c3ff5f9d52d61fc7e731058c066b2c3df665a774.tar.gz
scummvm-rg350-c3ff5f9d52d61fc7e731058c066b2c3df665a774.tar.bz2
scummvm-rg350-c3ff5f9d52d61fc7e731058c066b2c3df665a774.zip
KYRA: (LOK/Amiga) - fix save thumbnail colors
(I probably broke that in 04e85a0f)
-rw-r--r--engines/kyra/gui/gui_lok.cpp2
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;
}
}
}