From ed24206d9376fe50def86739015629c73a415e8d Mon Sep 17 00:00:00 2001 From: Spoike Date: Sat, 13 Nov 2004 09:23:09 +0000 Subject: [PATCH] I thought TimeServ had fixed this... Ah well, here timeserv, have a conflict! git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@406 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/common/plugin.c b/engine/common/plugin.c index 035d1e654..29d8a2f97 100644 --- a/engine/common/plugin.c +++ b/engine/common/plugin.c @@ -509,8 +509,8 @@ int Plug_Draw_Fill(void *offset, unsigned int mask, const long *arg) //hrm.... FIXME! int Plug_Draw_ColourP(void *offset, unsigned int mask, const long *arg) { - extern unsigned char vid_curpal[256*3]; - qbyte *pal = vid_curpal + VM_LONG(arg[0])*3; + extern unsigned char host_basepal[256*3]; + qbyte *pal = host_basepal + VM_LONG(arg[0])*3; if (arg[0]<0 || arg[0]>255) return false;