mirror of
https://github.com/glest/glest-source.git
synced 2025-08-30 19:29:47 +02:00
bugfix to init all variables for client connection
This commit is contained in:
@@ -185,7 +185,6 @@ ClientInterface::ClientInterface() : GameNetworkInterface() {
|
|||||||
|
|
||||||
flagAccessor = new Mutex(CODE_AT_LINE);
|
flagAccessor = new Mutex(CODE_AT_LINE);
|
||||||
|
|
||||||
this->readyForInGameJoin = false;
|
|
||||||
clientSocket= NULL;
|
clientSocket= NULL;
|
||||||
sessionKey = 0;
|
sessionKey = 0;
|
||||||
launchGame= false;
|
launchGame= false;
|
||||||
@@ -193,6 +192,8 @@ ClientInterface::ClientInterface() : GameNetworkInterface() {
|
|||||||
|
|
||||||
this->joinGameInProgress = false;
|
this->joinGameInProgress = false;
|
||||||
this->joinGameInProgressLaunch = false;
|
this->joinGameInProgressLaunch = false;
|
||||||
|
this->readyForInGameJoin = false;
|
||||||
|
this->resumeInGameJoin = false;
|
||||||
|
|
||||||
quitThreadAccessor = new Mutex(CODE_AT_LINE);
|
quitThreadAccessor = new Mutex(CODE_AT_LINE);
|
||||||
setQuitThread(false);
|
setQuitThread(false);
|
||||||
@@ -210,6 +211,7 @@ ClientInterface::ClientInterface() : GameNetworkInterface() {
|
|||||||
networkGameDataSynchCheckOkTech = false;
|
networkGameDataSynchCheckOkTech = false;
|
||||||
this->setNetworkGameDataSynchCheckTechMismatchReport("");
|
this->setNetworkGameDataSynchCheckTechMismatchReport("");
|
||||||
this->setReceivedDataSynchCheck(false);
|
this->setReceivedDataSynchCheck(false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ClientInterface::shutdownNetworkCommandListThread(MutexSafeWrapper &safeMutexWrapper) {
|
void ClientInterface::shutdownNetworkCommandListThread(MutexSafeWrapper &safeMutexWrapper) {
|
||||||
|
Reference in New Issue
Block a user