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


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/DataAccess.cpp

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