Merge branch 'master' of github.com:edubart/otclient

This commit is contained in:
Henrique Santiago 2011-03-20 20:10:39 -03:00
commit e107daf5dd
1 changed files with 6 additions and 4 deletions

View File

@ -75,12 +75,14 @@ void Engine::run()
update(ticks - lastFrameTicks); update(ticks - lastFrameTicks);
lastFrameTicks = ticks; lastFrameTicks = ticks;
// render // render only when visible
if(Platform::isWindowVisible()) {
render(); render();
// swap buffers // swap buffers
Platform::swapBuffers(); Platform::swapBuffers();
} }
}
lastFrameTicks = 0; lastFrameTicks = 0;
m_stopping = false; m_stopping = false;