Changeset 233e736 in network-game for common/WorldMap.cpp
- Timestamp:
- Sep 27, 2013, 6:56:04 PM (12 years ago)
- Branches:
- master
- Children:
- a6fe73d
- Parents:
- d519032
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/WorldMap.cpp
rd519032 r233e736 124 124 bool foundObject = false; 125 125 126 cout << "Searching for ob bject to update" << endl;126 cout << "Searching for object to update" << endl; 127 127 switch (t) { 128 128 case WorldMap::OBJECT_BLUE_FLAG: … … 198 198 ifstream file(filename.c_str()); 199 199 200 cout << "Trying to open file: " << filename << endl; 201 200 202 if (file.is_open()) 201 203 { 204 cout << filename << " opened successfully" << endl; 205 202 206 string line; 203 207 int width, height; … … 299 303 } 300 304 file.close(); 305 cout << filename << " closed" << endl; 301 306 } 302 307 else 303 308 cout << "Could not open the file" << endl; 309 310 cout << "Finished file processing" << endl; 304 311 305 312 return m;
Note:
See TracChangeset
for help on using the changeset viewer.