- Fixed: The framerate was not capped before starting a game.

SVN r1973 (trunk)
This commit is contained in:
Randy Heit 2009-11-12 03:14:10 +00:00
parent 30b21b2eea
commit 7b7973c6a7
2 changed files with 4 additions and 0 deletions

View file

@ -1,4 +1,5 @@
November 11, 2009
- Fixed: The framerate was not capped before starting a game.
- Removed the one embedded DeHackEd lump restriction.
- Fixed: nofreeaim in P_SpawnPlayerMissile() was broken.
- Fixed: MBF sky Y offsets were ignored. X offsets should also be applied to

View file

@ -860,6 +860,9 @@ void D_DoomLoop ()
{
int lasttic = 0;
// Clamp the timer to TICRATE until the playloop has been entered.
r_NoInterpolate = true;
for (;;)
{
try