Changeset 88258c9 in network-game for common/WorldMap.cpp


Ignore:
Timestamp:
Sep 27, 2013, 6:13:24 PM (11 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
d519032
Parents:
7d8d5d3
Message:

Removed some unnecessary debug statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • common/WorldMap.cpp

    r7d8d5d3 r88258c9  
    227227         if (line.size() > 0)
    228228         {
    229             cout << "row: " << row << endl;
    230             cout << "line: " << line << endl;
     229            //cout << "row: " << row << endl;
     230            //cout << "line: " << line << endl;
    231231
    232232            istringstream iss(line);
     
    244244                  type = atoi(token.c_str());
    245245
    246                   cout << "x: " << x << endl;
    247                   cout << "token: " << token << endl;
    248                   cout << "type: " << type << endl;
     246                  //cout << "x: " << x << endl;
     247                  //cout << "token: " << token << endl;
     248                  //cout << "type: " << type << endl;
    249249
    250250                  switch(type) {
     
    269269
    270270               getline(iss, token, ',');
    271                cout << "token(x): " << token << endl;
     271               //cout << "token(x): " << token << endl;
    272272               x = atoi(token.c_str());
    273273
    274274               getline(iss, token, ',');
    275                cout << "token(y): " << token << endl;
     275               //cout << "token(y): " << token << endl;
    276276               y = atoi(token.c_str());
    277277
    278278               getline(iss, token, ',');
    279                cout << "token(type): " << token << endl;
     279               //cout << "token(type): " << token << endl;
    280280               type = atoi(token.c_str());
    281281
Note: See TracChangeset for help on using the changeset viewer.