From a44859e01bead5a30d8446a5bc75857d000199d9 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Tue, 23 Jun 2009 14:06:57 +0000 Subject: Fix error in Backyard Soccer 2004, when using Season Play. svn-id: r41808 --- engines/scumm/he/script_v100he.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/scumm/he/script_v100he.cpp b/engines/scumm/he/script_v100he.cpp index 60db9adefb..58a858ede4 100644 --- a/engines/scumm/he/script_v100he.cpp +++ b/engines/scumm/he/script_v100he.cpp @@ -1574,7 +1574,10 @@ void ScummEngine_v100he::o100_roomOps() { case 130: a = pop(); b = pop(); - copyPalColor(a, b); + if (_game.features & GF_16BIT_COLOR) + copyHEPaletteColor(1, a, b); + else + copyPalColor(a, b); break; case 131: // SO_ROOM_FADE -- cgit v1.2.3