1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Remove unused variable wsa_initialized from NetworkBase

This commit is contained in:
Fruitsalad
2022-02-12 23:41:31 +01:00
committed by Gymnasiast
parent 99a0876ad6
commit 27bf5e160d
2 changed files with 0 additions and 2 deletions

View File

@@ -111,7 +111,6 @@ static u8string network_get_public_key_path(u8string_view playerName, u8string_v
NetworkBase::NetworkBase(OpenRCT2::IContext& context)
: OpenRCT2::System(context)
{
wsa_initialized = false;
mode = NETWORK_MODE_NONE;
status = NETWORK_STATUS_NONE;
last_ping_sent_time = 0;

View File

@@ -189,7 +189,6 @@ private: // Common Data
uint8_t default_group = 0;
bool _closeLock = false;
bool _requireClose = false;
bool wsa_initialized = false;
private: // Server Data
std::unordered_map<NetworkCommand, CommandHandler> server_command_handlers;