Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix regression of world loading caused by 81c863a
  • Loading branch information
kwolekr committed May 19, 2013
1 parent 45fcc9d commit f577fac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game.cpp
Expand Up @@ -1042,7 +1042,7 @@ void the_game(
u32 lasttime = device->getTimer()->getTime();
while(device->run())
{
f32 dtime=0; // in seconds
f32 dtime = 0.033; // in seconds
if (cloud_menu_background) {
u32 time = device->getTimer()->getTime();
if(time > lasttime)
Expand Down Expand Up @@ -1136,7 +1136,7 @@ void the_game(
u32 lasttime = device->getTimer()->getTime();
while(device->run())
{
f32 dtime=0; // in seconds
f32 dtime = 0.033; // in seconds
if (cloud_menu_background) {
u32 time = device->getTimer()->getTime();
if(time > lasttime)
Expand Down

0 comments on commit f577fac

Please sign in to comment.