Fixed pause blur image not updating correctly on resolution change

master
krzys-h 2016-05-21 18:58:35 +02:00
parent 213fd6b203
commit 59c106f7a7
1 changed files with 4 additions and 1 deletions

View File

@ -362,7 +362,7 @@ void CEngine::ResetAfterVideoConfigChanged()
m_mouseSize = Math::Point(0.04f, 0.04f * (static_cast<float>(m_size.x) / static_cast<float>(m_size.y)));
// Update the camera projection matrix for new aspect ratio
SetFocus(m_focus);
ApplyChange();
// This needs to be recreated on resolution change
m_device->DeleteFramebuffer("multisample");
@ -3081,7 +3081,10 @@ void CEngine::ApplyChange()
// recapture 3D scene
if (m_worldCaptured)
{
m_captureWorld = true;
m_worldCaptured = false;
}
}
void CEngine::ClearDisplayCrashSpheres()