[Scummvm-git-logs] scummvm branch-2-9 -> bb0708d3db86c7b1106c6dad3d1a5163f7c53831
sluicebox
noreply at scummvm.org
Fri May 2 07:15:36 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
bb0708d3db SCI: Fix EGA picture default palette
Commit: bb0708d3db86c7b1106c6dad3d1a5163f7c53831
https://github.com/scummvm/scummvm/commit/bb0708d3db86c7b1106c6dad3d1a5163f7c53831
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2025-05-02T00:15:06-07:00
Commit Message:
SCI: Fix EGA picture default palette
Color 33 is a dither of blue and light blue, but they were swapped.
This first occurred in SCI Decoder in 1992.
Fixes the robot skull in SQ3 picture 5
Changed paths:
engines/sci/graphics/picture.cpp
diff --git a/engines/sci/graphics/picture.cpp b/engines/sci/graphics/picture.cpp
index a5004744cc6..2bafcc7025f 100644
--- a/engines/sci/graphics/picture.cpp
+++ b/engines/sci/graphics/picture.cpp
@@ -406,7 +406,7 @@ static const byte vector_defaultEGApalette[PIC_EGAPALETTE_SIZE] = {
0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0x88,
0x88, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x88,
0x88, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff,
- 0x08, 0x91, 0x2a, 0x3b, 0x4c, 0x5d, 0x6e, 0x88
+ 0x08, 0x19, 0x2a, 0x3b, 0x4c, 0x5d, 0x6e, 0x88
};
static const byte vector_defaultEGApriority[PIC_EGAPRIORITY_SIZE] = {
More information about the Scummvm-git-logs
mailing list