Changeset b72ed16 in network-game for common/WorldMap.cpp
- Timestamp:
- Sep 24, 2013, 4:24:32 PM (11 years ago)
- Branches:
- master
- Children:
- 85bf1e2
- Parents:
- 1785314
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/WorldMap.cpp
r1785314 rb72ed16 227 227 if (line.size() > 0) 228 228 { 229 cout << "row: " << row << endl; 229 230 cout << "line: " << line << endl; 230 231 … … 241 242 { 242 243 getline(iss, token, ','); 244 type = atoi(token.c_str()); 245 246 cout << "x: " << x << endl; 243 247 cout << "token: " << token << endl; 244 type = atoi(token.c_str());245 248 cout << "type: " << type << endl; 246 249 … … 257 260 } 258 261 259 cout << "About to set element" << endl;260 cout << "x: " << x << endl;261 cout << "row: " << row << endl;262 262 m->setElement(x, row, terrain); 263 263 }
Note:
See TracChangeset
for help on using the changeset viewer.