mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- fixed uninitialized clear color variable.
This commit is contained in:
parent
63f057d93f
commit
cecfbb76e8
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ public:
|
||||||
IntRect mScreenViewport;
|
IntRect mScreenViewport;
|
||||||
IntRect mSceneViewport;
|
IntRect mSceneViewport;
|
||||||
IntRect mOutputLetterbox;
|
IntRect mOutputLetterbox;
|
||||||
float mSceneClearColor[4];
|
float mSceneClearColor[4]{ 0,0,0,255 };
|
||||||
|
|
||||||
public:
|
public:
|
||||||
DFrameBuffer (int width=1, int height=1);
|
DFrameBuffer (int width=1, int height=1);
|
||||||
|
|
Loading…
Reference in a new issue