mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 13:11:33 +00:00
- 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:
parent
a02e8c0b06
commit
f1738b0e03
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue