fixed missing "MenuBGAnims*" from VC7 project

This commit is contained in:
Chris Danford
2002-09-15 00:32:21 +00:00
parent 7c6529979c
commit 08926e30af
4 changed files with 35 additions and 14 deletions
+8
View File
@@ -38,6 +38,14 @@ void TransitionFade::DrawPrimitives()
D3DXCOLOR colorTemp = GetDiffuse() * fPercentageOpaque;
m_rect.SetDiffuse( colorTemp );
m_rect.Draw();
// SUPER HACK! For some reason, this does not draw in release mode. I've looked for
// hours and can't figure out why. It appears though if you draw it twice, so that's
// what we'll do for now. Aye...
#ifndef _DEBUG
m_rect.SetDiffuse( colorTemp );
m_rect.Draw();
#endif
}