FREESCAPE: fixed incorrect color in one of the CGA palettes from Driller (DOS)

This commit is contained in:
neuromancer 2022-12-20 23:45:52 -03:00
parent d03ab98029
commit 0e9e395247

View File

@ -32,7 +32,7 @@ namespace Freescape {
byte dos_CGA_palette[4][3] = {
{0x00, 0x00, 0x00},
{0x00, 0xaa, 0xaa},
{0xaa, 0x00, 0x00},
{0xaa, 0x00, 0xaa},
{0xaa, 0xaa, 0xaa},
};