Changeset 2944 for code/branches/netp2/src/network/synchronisable
- Timestamp:
- May 1, 2009, 9:47:34 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/netp2/src/network/synchronisable/SynchronisableVariable.h
r2861 r2944 268 268 else{ 269 269 // apply data 270 mem += sizeof(varReference_); 271 if ( checkEquality( this->variable_, mem )==true ) 270 if ( checkEquality( this->variable_, mem+sizeof(varReference_) )==true ) 272 271 { 273 272 mem += getSize( mode ); … … 276 275 else 277 276 { 277 mem += sizeof(varReference_); 278 278 memcpy((void*)&this->varBuffer_, &this->variable_, sizeof(T)); 279 279 if ( this->callback_ != 0 )
Note: See TracChangeset
for help on using the changeset viewer.