Stabilizing the lander rate caused some problems, and so it's back to unstable

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3313 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
avolkov
2009-11-17 21:54:05 +00:00
parent 29fc6576a2
commit 4754c6116d
+3 -2
View File
@@ -1772,8 +1772,9 @@ landerSpeedNumer = WORLD_TO_VELOCITY (48);
ScrollPlanetSide (dx, dy, ON_THE_GROUND); ScrollPlanetSide (dx, dy, ON_THE_GROUND);
SleepThreadUntil (pLanderInputState->NextTime); SleepThreadUntil (pMS->NextTime);
pLanderInputState->NextTime += PLANET_SIDE_RATE; // NOTE: The rate is not stabilized
pMS->NextTime = GetTimeCounter () + PLANET_SIDE_RATE;
return TRUE; return TRUE;
} }