mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Fix mColor reset value
This commit is contained in:
parent
71387b1b42
commit
e0e43ee7b3
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ void FRenderState::Reset()
|
|||
mLastDepthClamp = true;
|
||||
mInterpolationFactor = 0.0f;
|
||||
|
||||
mColor.Set(0.0f, 0.0f, 0.0f, 0.0f);
|
||||
mColor.Set(1.0f, 1.0f, 1.0f, 1.0f);
|
||||
mCameraPos.Set(0.0f, 0.0f, 0.0f, 0.0f);
|
||||
mGlowTop.Set(0.0f, 0.0f, 0.0f, 0.0f);
|
||||
mGlowBottom.Set(0.0f, 0.0f, 0.0f, 0.0f);
|
||||
|
|
Loading…
Reference in a new issue