From 0a673d3e8c67e6a33e522346fcdcb1134c476ee4 Mon Sep 17 00:00:00 2001 From: Bei Yang Date: Tue, 10 Nov 2009 01:05:35 +0000 Subject: [PATCH] Changed x64 compile define code fo COLOR_VALULE --- panda/src/dxgsg9/dxGraphicsStateGuardian9.I | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/dxgsg9/dxGraphicsStateGuardian9.I b/panda/src/dxgsg9/dxGraphicsStateGuardian9.I index ae18aa2aba..27bc96abfb 100755 --- a/panda/src/dxgsg9/dxGraphicsStateGuardian9.I +++ b/panda/src/dxgsg9/dxGraphicsStateGuardian9.I @@ -68,7 +68,7 @@ Colorf_to_D3DCOLOR(const Colorf &cColorf) { // dxgsg9_cat.debug() << (void*)d3dcolor << endl; return d3dcolor; #else //!_X86_ - return MY_D3DRGBA(cColorf[0], cColorf[1], cColorf[2], cColorf[3]); + return D3DCOLOR_COLORVALUE(cColorf[0], cColorf[1], cColorf[2], cColorf[3]); #endif //!_X86_ }