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,11 +75,13 @@ void Engine::run()
update(ticks - lastFrameTicks); update(ticks - lastFrameTicks);
lastFrameTicks = ticks; lastFrameTicks = ticks;
// render // render only when visible
render(); if(Platform::isWindowVisible()) {
render();
// swap buffers // swap buffers
Platform::swapBuffers(); Platform::swapBuffers();
}
} }
lastFrameTicks = 0; lastFrameTicks = 0;