Window::create() now also resets framerate limit

Fixes #371
This commit is contained in:
Jan Haller 2014-04-06 17:14:24 +02:00
parent e9334db424
commit 18bbd23886

View File

@ -392,6 +392,7 @@ void Window::initialize()
setMouseCursorVisible(true); setMouseCursorVisible(true);
setVerticalSyncEnabled(false); setVerticalSyncEnabled(false);
setKeyRepeatEnabled(true); setKeyRepeatEnabled(true);
setFramerateLimit(0);
// Get and cache the initial size of the window // Get and cache the initial size of the window
m_size = m_impl->getSize(); m_size = m_impl->getSize();