(svn r15967) -Codechange: do not access NetworkSocketHandler::has_quit directly

This commit is contained in:
rubidium
2009-04-07 18:23:14 +00:00
parent 3fdb8a62c4
commit 22d9306889
7 changed files with 34 additions and 30 deletions

View File

@@ -457,7 +457,7 @@ public:
assert(_network_content_client.sock == INVALID_SOCKET);
_network_content_client.isConnecting = false;
_network_content_client.sock = s;
_network_content_client.has_quit = false;
_network_content_client.Reopen();
_network_content_client.OnConnect(true);
}
};