Fix for [#32469] "standalone blenderplayer no longer starts in lastest build" reported by narutocanada. It looks like the Hive commit (r50310) didn't take changes from r49998 into account, so it was still relying on Ghost events to push the engine along instead of calling app->EngineNextFrame().

This commit is contained in:
Mitchell Stokes 2012-09-04 02:33:37 +00:00
parent a71b160184
commit e5a1b1b526

@ -337,6 +337,7 @@ bool GPG_NextFrame(GHOST_ISystem* system, GPG_Application *app, int &exitcode, S
bool run = true;
system->processEvents(false);
system->dispatchEvents();
app->EngineNextFrame();
if ((exitcode = app->getExitRequested()))
{
run = false;