Changeset b72ed16 in network-game


Ignore:
Timestamp:
Sep 24, 2013, 4:24:32 PM (11 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
85bf1e2
Parents:
1785314
Message:

Included crypt header and reduced debug messages during map load

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • common/WorldMap.cpp

    r1785314 rb72ed16  
    227227         if (line.size() > 0)
    228228         {
     229            cout << "row: " << row << endl;
    229230            cout << "line: " << line << endl;
    230231
     
    241242               {
    242243                  getline(iss, token, ',');
     244                  type = atoi(token.c_str());
     245
     246                  cout << "x: " << x << endl;
    243247                  cout << "token: " << token << endl;
    244                   type = atoi(token.c_str());
    245248                  cout << "type: " << type << endl;
    246249
     
    257260                  }
    258261
    259                   cout << "About to set element" << endl;
    260                   cout << "x: " << x << endl;
    261                   cout << "row: " << row << endl;
    262262                  m->setElement(x, row, terrain);
    263263               }
  • server/DataAccess.cpp

    r1785314 rb72ed16  
    44#include <sstream>
    55#include <cstdlib>
     6#include <crypt.h>
    67
    78using namespace std;
Note: See TracChangeset for help on using the changeset viewer.