Changes in server/DataAccess.cpp [60017fc:b128109] in network-game


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/DataAccess.cpp

    r60017fc rb128109  
    8181   }
    8282
    83    if ( ( row = mysql_fetch_row(result)) != NULL ) {
    84       cout << "Creating a new player" << endl;
     83   if ( ( row = mysql_fetch_row(result)) != NULL )
    8584      p = new Player(string(row[1]), string(row[2]));
    86    }else {
     85   else {
    8786      cout << "Returned no results for some reason" << endl;
    8887      p = NULL;
Note: See TracChangeset for help on using the changeset viewer.