- Timestamp:
- Apr 8, 2009, 12:36:08 AM (16 years ago)
- Location:
- code/branches/questsystem5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem5
- Property svn:mergeinfo changed
-
code/branches/questsystem5/src/network/synchronisable/SynchronisableVariable.h
r2710 r2907 35 35 #include <string> 36 36 #include <cassert> 37 #include "core/Core.h" 38 #include "core/CoreIncludes.h" 37 #include "util/Math.h" 39 38 #include "network/synchronisable/NetworkCallback.h" 40 39 #include "network/synchronisable/NetworkCallbackManager.h" … … 63 62 virtual ~SynchronisableVariableBase() {} 64 63 protected: 64 static void setState(); 65 65 static uint8_t state_; 66 66 }; … … 110 110 variable_( variable ), mode_( syncDirection ), callback_( cb ) 111 111 { 112 if ( state_ == 0x0 ) 113 { 114 state_ = Core::isMaster() ? 0x1 : 0x2; // set the appropriate mode here 115 } 112 setState(); 116 113 } 117 114
Note: See TracChangeset
for help on using the changeset viewer.