mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed uninitialized clear color variable.
This commit is contained in:
parent
98e4a3035d
commit
a12f277846
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,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