Fix wrong flash rectangle size after window resize

This commit is contained in:
Magnus Norddahl 2016-09-16 02:53:19 +02:00
commit 3c1868f7e6
3 changed files with 17 additions and 0 deletions

View file

@ -192,6 +192,7 @@ void OpenGLFrameBuffer::Update()
{
Resize(clientWidth, clientHeight);
V_OutputResized(Width, Height);
GLRenderer->mVBO->OutputResized(Width, Height);
}
}