From 0e9e395247f803593ec55cf9252017a951e0eec0 Mon Sep 17 00:00:00 2001 From: neuromancer Date: Tue, 20 Dec 2022 23:45:52 -0300 Subject: [PATCH] FREESCAPE: fixed incorrect color in one of the CGA palettes from Driller (DOS) --- engines/freescape/games/driller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/freescape/games/driller.cpp b/engines/freescape/games/driller.cpp index fe2f628ce0b..860f68a6e0c 100644 --- a/engines/freescape/games/driller.cpp +++ b/engines/freescape/games/driller.cpp @@ -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}, };