Changes in server/DataAccess.cpp [426fb84:7fa452f] in network-game


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/DataAccess.cpp

    r426fb84 r7fa452f  
    178178{
    179179   // each array is the score for one game
    180    // the columns are result, team, blue score, red score, and time the game ended
     180   // the columns are result, team, blue score, and red score
    181181   // for result 0 is defeat and 1 is victory
    182182   // for team, 1 is blue and 2 is red
     
    197197   int i=0;
    198198   while ( ( row = mysql_fetch_row(result)) != NULL ) {
    199       gameHistory[i] = new int[5];
     199      gameHistory[i] = new int[4];
    200200
    201201      int userTeam = atoi(row[2]);
    202       int blueScore = atoi(row[3]);
    203       int redScore = atoi(row[4]);
    204       time_t timeFinished = atoi(row[5]);
     202      int blueScore = atoi(row[4]);
     203      int redScore = atoi(row[3]);
    205204      int gameResult = -1;
    206205
     
    223222      gameHistory[i][2] = blueScore;
    224223      gameHistory[i][3] = redScore;
    225       gameHistory[i][4] = timeFinished;
    226224
    227225      i++;
     
    238236}
    239237
    240 int DataAccess::saveGameHistory(int playerId, int team, int blueScore, int redScore, time_t timeFinished)
     238int DataAccess::saveGameHistory(int playerId, int team, int blueScore, int redScore)
    241239{
    242240   ostringstream oss;
    243241
    244242   cout << "Saving game to db" << endl;
    245    oss << playerId << ", " << team << ", " << blueScore << ", " << redScore << ", " << timeFinished;
    246 
    247    return insert("gameHistory", "user_id, user_team, blue_score, red_score, time_finished", oss.str());
     243   oss << playerId << ", " << team << ", " << blueScore << ", " << redScore;
     244
     245   return insert("gameHistory", "user_id, user_team, blue_score, red_score", oss.str());
    248246}
    249247
Note: See TracChangeset for help on using the changeset viewer.