mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 17:57:14 +00:00
PINK: Convert BGR color to RGB color
This commit is contained in:
parent
7beaa38ef6
commit
7dcb1f91ed
@ -66,6 +66,7 @@ void ActionText::deserialize(Archive &archive) {
|
||||
_centered = archive.readDWORD();
|
||||
_scrollBar = archive.readDWORD();
|
||||
_textRGB = archive.readDWORD();
|
||||
_textRGB = ((_textRGB >> 16) & 0xFF) | (((_textRGB >> 8) & 0xFF) << 8) | ((_textRGB & 0xFF) << 16);
|
||||
_backgroundRGB = archive.readDWORD();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user