- Added a command line option -warpwipe to perform the screen wipe if you

start with -warp or +map.


SVN r1960 (trunk)
This commit is contained in:
Randy Heit 2009-11-04 01:24:00 +00:00
parent a02e8c0b06
commit f1738b0e03
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,7 @@
November 3, 2009
- Added a command line option -warpwipe to perform the screen wipe if you
start with -warp or +map.
October 31, 2009 October 31, 2009
- Changed all coordinates for DrawTexture() to floating point so that the - Changed all coordinates for DrawTexture() to floating point so that the
player sprites will retain the same precision they had when they were player sprites will retain the same precision they had when they were

View file

@ -2071,7 +2071,10 @@ void D_DoomMain (void)
if (autostart || netgame) if (autostart || netgame)
{ {
// Do not do any screenwipes when autostarting a game. // Do not do any screenwipes when autostarting a game.
NoWipe = 35; if (!Args->CheckParm("-warpwipe"))
{
NoWipe = TICRATE;
}
CheckWarpTransMap (startmap, true); CheckWarpTransMap (startmap, true);
if (demorecording) if (demorecording)
G_BeginRecording (startmap); G_BeginRecording (startmap);