From b19c423fb9149685a91faec2b64d30ff0bd31b05 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 28 Feb 2006 17:29:10 +0000 Subject: [PATCH] fix model glow --- stepmania/src/Model.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Model.cpp b/stepmania/src/Model.cpp index 7975617fd7..e889a6b1b9 100644 --- a/stepmania/src/Model.cpp +++ b/stepmania/src/Model.cpp @@ -453,8 +453,8 @@ void Model::DrawPrimitives() // apply material RageColor emissive = RageColor(0,0,0,0); - RageColor ambient = m_pTempState->glow; - RageColor diffuse = RageColor(0,0,0,0); + RageColor ambient = RageColor(0,0,0,0); + RageColor diffuse = m_pTempState->glow; RageColor specular = RageColor(0,0,0,0); float shininess = 1;