Fix crash caused by uninitialised variable.

This commit is contained in:
hiker 2014-05-30 11:30:44 +10:00
parent 44f70454ad
commit 8ea5110fd4

View File

@ -54,6 +54,7 @@ static GLuint generateFBO(GLuint ColorAttachement, GLuint DepthAttachement)
RTT::RTT(size_t width, size_t height)
{
m_shadow_FBO = NULL;
m_RH_FBO = NULL;
m_RSM = NULL;
using namespace video;
using namespace core;