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
No known key found for this signature in database
GPG Key ID: DBFFF47AB2CA3EDD
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;