From 843b30403163b67ec277f086f3ead587bd50e266 Mon Sep 17 00:00:00 2001 From: Stuart George Date: Sat, 27 Jan 2007 01:59:37 +0000 Subject: Fixed picture drawing bug in pattern data (should only affect v3 + sq1 games only). Fixes Goldrush intro. Does not seem to break any other v3 game or SQ2 svn-id: r25222 --- engines/agi/picture.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engines/agi/picture.cpp b/engines/agi/picture.cpp index 2c3f41fb20..2e7ce38598 100644 --- a/engines/agi/picture.cpp +++ b/engines/agi/picture.cpp @@ -44,7 +44,8 @@ static uint8 priColour; static uint8 circles[][15] = { /* agi circle bitmaps */ {0x80}, - {0xfc}, + /* {0xfc}, */ + { 3 << 4 }, /* pattern data different from specs. fixes gold rush. does not seem to break any other v3 games */ {0x5f, 0xf4}, {0x66, 0xff, 0xf6, 0x60}, {0x23, 0xbf, 0xff, 0xff, 0xee, 0x20}, -- cgit v1.2.3