mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- Removed the netdemo flag, because it's redundant with (netgame && demoplayback).
SVN r4050 (trunk)
This commit is contained in:
parent
83320626e5
commit
e0a137b725
3 changed files with 2 additions and 7 deletions
|
@ -158,7 +158,6 @@ EXTERN_CVAR (Bool, sv_unlimited_pickup)
|
|||
|
||||
extern int testingmode;
|
||||
extern bool setmodeneeded;
|
||||
extern bool netdemo;
|
||||
extern int NewWidth, NewHeight, NewBits, DisplayBits;
|
||||
EXTERN_CVAR (Bool, st_scale)
|
||||
extern bool gameisdead;
|
||||
|
|
|
@ -164,7 +164,6 @@ CVAR(Bool, demo_compress, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG);
|
|||
FString demoname;
|
||||
bool demorecording;
|
||||
bool demoplayback;
|
||||
bool netdemo;
|
||||
bool demonew; // [RH] Only used around G_InitNew for demos
|
||||
int demover;
|
||||
BYTE* demobuffer;
|
||||
|
@ -1131,7 +1130,7 @@ void G_Ticker ()
|
|||
Printf ("%s is turbo!\n", players[i].userinfo.netname);
|
||||
}
|
||||
|
||||
if (netgame && !players[i].isbot && !netdemo && (gametic%ticdup) == 0)
|
||||
if (netgame && !players[i].isbot && !demoplayback && (gametic%ticdup) == 0)
|
||||
{
|
||||
//players[i].inconsistant = 0;
|
||||
if (gametic > BACKUPTICS*ticdup && consistancy[i][buf] != cmd->consistancy)
|
||||
|
@ -2503,7 +2502,7 @@ bool G_ProcessIFFDemo (char *mapname)
|
|||
}
|
||||
|
||||
if (numPlayers > 1)
|
||||
multiplayer = netgame = netdemo = true;
|
||||
multiplayer = netgame = true;
|
||||
|
||||
if (uncompSize > 0)
|
||||
{
|
||||
|
@ -2641,7 +2640,6 @@ bool G_CheckDemoStatus (void)
|
|||
|
||||
P_SetupWeapons_ntohton();
|
||||
demoplayback = false;
|
||||
netdemo = false;
|
||||
netgame = false;
|
||||
multiplayer = false;
|
||||
singletics = false;
|
||||
|
|
|
@ -114,7 +114,6 @@ extern bool timingdemo;
|
|||
int starttime;
|
||||
|
||||
|
||||
extern bool netdemo;
|
||||
extern FString BackupSaveName;
|
||||
|
||||
bool savegamerestore;
|
||||
|
@ -230,7 +229,6 @@ void G_NewInit ()
|
|||
G_ClearSnapshots ();
|
||||
SB_state = screen->GetPageCount ();
|
||||
netgame = false;
|
||||
netdemo = false;
|
||||
multiplayer = false;
|
||||
if (demoplayback)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue