Changeset 1d0ede1 in network-game


Ignore:
Timestamp:
Jun 17, 2013, 2:27:26 AM (11 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
c76134b
Parents:
7c52498 (diff), 88c0536 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of github.com:weretaco/network-game

File:
1 edited

Legend:

Unmodified
Added
Removed
  • common/Player.cpp

    r7c52498 r1d0ede1  
    144144   memcpy(buffer+46, &this->range, 4);
    145145
    146    strcpy(buffer+46, this->name.c_str());
     146   strcpy(buffer+50, this->name.c_str());
    147147}
    148148
     
    165165   memcpy(&this->range, buffer+46, 4);
    166166
    167    this->name.assign(buffer+46);
     167   this->name.assign(buffer+50);
    168168}
    169169
Note: See TracChangeset for help on using the changeset viewer.