Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 1, 2008, 2:00:08 PM (17 years ago)
Author:
rgrieder
Message:
  • removed warnings on msvc compiler
  • on msvc: loader is now built with orxonox, not as a separate library
Location:
code/branches/FICN/src/network
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/network/GameStateClient.cc

    r777 r782  
    136136    }
    137137    // should be finished now
    138     GameState r = {b.id, dest_length, dp};
     138    // FIXME: is it true or false now? (struct has changed, producing warnings)
     139    GameState r = {b.id, dest_length, true, dp};
    139140    return r;
    140141  }
  • code/branches/FICN/src/network/GameStateManager.cc

    r777 r782  
    182182    }
    183183    // should be finished now
    184     GameState r = {b->id, dest_length, dp};
     184    // FIXME: is it true or false now? (struct has changed, producing warnings)
     185    GameState r = {b->id, dest_length, true, dp};
    185186    return r;
    186187  }
Note: See TracChangeset for help on using the changeset viewer.