Skip to content

Commit f577fac

Browse files
committedMay 19, 2013
Fix regression of world loading caused by 81c863a
1 parent 45fcc9d commit f577fac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/game.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ void the_game(
10421042
u32 lasttime = device->getTimer()->getTime();
10431043
while(device->run())
10441044
{
1045-
f32 dtime=0; // in seconds
1045+
f32 dtime = 0.033; // in seconds
10461046
if (cloud_menu_background) {
10471047
u32 time = device->getTimer()->getTime();
10481048
if(time > lasttime)
@@ -1136,7 +1136,7 @@ void the_game(
11361136
u32 lasttime = device->getTimer()->getTime();
11371137
while(device->run())
11381138
{
1139-
f32 dtime=0; // in seconds
1139+
f32 dtime = 0.033; // in seconds
11401140
if (cloud_menu_background) {
11411141
u32 time = device->getTimer()->getTime();
11421142
if(time > lasttime)

0 commit comments

Comments
 (0)
Please sign in to comment.