Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 1, 2009, 9:47:34 AM (15 years ago)
Author:
scheusso
Message:

this is another commit for testing purpose
still trying to get network function calls to work (first success)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/netp2/src/network/synchronisable/SynchronisableVariable.h

    r2861 r2944  
    268268        else{
    269269          // apply data
    270           mem += sizeof(varReference_);
    271           if ( checkEquality( this->variable_, mem )==true )
     270          if ( checkEquality( this->variable_, mem+sizeof(varReference_) )==true )
    272271          {
    273272            mem += getSize( mode );
     
    276275          else
    277276          {
     277            mem += sizeof(varReference_);
    278278            memcpy((void*)&this->varBuffer_, &this->variable_, sizeof(T));
    279279            if ( this->callback_ != 0 )
Note: See TracChangeset for help on using the changeset viewer.