mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 17:08:44 +00:00
Fixed default value of consoleplayer
Needs to be 0 since certain cvars will try and use it on initial callback when the engine boots up.
This commit is contained in:
parent
60ebd71fea
commit
3c470019de
1 changed files with 2 additions and 3 deletions
|
@ -158,7 +158,7 @@ struct FConnection
|
|||
bool netgame = false;
|
||||
bool multiplayer = false;
|
||||
ENetMode NetMode = NET_PeerToPeer;
|
||||
int consoleplayer = -1;
|
||||
int consoleplayer = 0;
|
||||
int Net_Arbitrator = 0;
|
||||
FClientStack NetworkClients = {};
|
||||
|
||||
|
@ -930,7 +930,6 @@ static bool HostGame(int arg, bool forcedNetMode)
|
|||
if (MaxClients > MAXPLAYERS)
|
||||
I_FatalError("Cannot host a game with %u players. The limit is currently %u", MaxClients, MAXPLAYERS);
|
||||
|
||||
consoleplayer = 0;
|
||||
NetworkClients += 0;
|
||||
Connected[consoleplayer].Status = CSTAT_READY;
|
||||
Net_SetupUserInfo();
|
||||
|
@ -1183,6 +1182,7 @@ static bool JoinGame(int arg)
|
|||
I_FatalError("You need to specify the host machine's address");
|
||||
}
|
||||
|
||||
consoleplayer = -1;
|
||||
StartNetwork(true);
|
||||
|
||||
// Host is always client 0.
|
||||
|
@ -1254,7 +1254,6 @@ bool I_InitNetwork()
|
|||
{
|
||||
// single player game
|
||||
TicDup = 1;
|
||||
consoleplayer = 0;
|
||||
NetworkClients += 0;
|
||||
Connected[0].Status = CSTAT_READY;
|
||||
Net_SetupUserInfo();
|
||||
|
|
Loading…
Reference in a new issue