[Orxonox-commit 1416] r6134 - code/branches/presentation2/src/libraries/network
scheusso at orxonox.net
scheusso at orxonox.net
Tue Nov 24 01:06:50 CET 2009
Author: scheusso
Date: 2009-11-24 01:06:50 +0100 (Tue, 24 Nov 2009)
New Revision: 6134
Modified:
code/branches/presentation2/src/libraries/network/Client.cc
Log:
can't imagine why i never encountered any problems with that ^^
Modified: code/branches/presentation2/src/libraries/network/Client.cc
===================================================================
--- code/branches/presentation2/src/libraries/network/Client.cc 2009-11-23 22:29:01 UTC (rev 6133)
+++ code/branches/presentation2/src/libraries/network/Client.cc 2009-11-24 00:06:50 UTC (rev 6134)
@@ -61,7 +61,8 @@
*/
Client::Client():
isSynched_(false),
- gameStateFailure_(false)
+ gameStateFailure_(false),
+ timeSinceLastUpdate_(0)
{
}
@@ -72,7 +73,8 @@
*/
Client::Client(const std::string& address, int port):
isSynched_(false),
- gameStateFailure_(false)
+ gameStateFailure_(false),
+ timeSinceLastUpdate_(0)
{
setPort( port );
setServerAddress( address );
More information about the Orxonox-commit
mailing list