fixed some uninitialized values

This commit is contained in:
itsmattkc
2019-09-08 12:20:16 +10:00
parent 72642f74bf
commit e174618f34
+5 -1
View File
@@ -27,7 +27,11 @@
RenderTexture::RenderTexture() :
context_(nullptr),
texture_(0)
texture_(0),
back_texture_(0),
width_(0),
height_(0),
format_(olive::PIX_FMT_INVALID)
{
}