- Timestamp:
- Dec 26, 2012, 3:27:08 PM (12 years ago)
- Branches:
- master
- Children:
- 5066e27
- Parents:
- 3b8adee
- git-author:
- dportnoy <dmp1488@…> (12/26/12 15:26:07)
- git-committer:
- dportnoy <dmp1488@…> (12/26/12 15:27:08)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/Player.cpp
r3b8adee r60776f2 37 37 38 38 oss << this->name; 39 oss.write((char*)&(this->pos.x), sizeof(int)); 40 oss.write((char*)&(this->pos.y), sizeof(int)); 39 41 40 memcpy(buffer, oss.str().c_str(), this->name.length()+1 );42 memcpy(buffer, oss.str().c_str(), this->name.length()+1+2*sizeof(int)); 41 43 } 42 44 … … 44 46 { 45 47 istringstream iss; 48 iss.str(buffer); 46 49 47 50 iss >> this->name; 51 iss.read((char*)&(this->pos.x), sizeof(int)); 52 iss.read((char*)&(this->pos.y), sizeof(int)); 48 53 } 49 54
Note:
See TracChangeset
for help on using the changeset viewer.