Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 30, 2005, 11:56:26 PM (18 years ago)
Author:
patrick
Message:

network: found a loading error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/story_entities/multi_player_world.cc

    r6363 r6364  
    8787void MultiPlayerWorld::loadParams(const TiXmlElement* root)
    8888{
    89   static_cast<MultiPlayerWorld*>(this)->loadParams(root);
     89  static_cast<GameWorld*>(this)->loadParams(root);
    9090
    9191  PRINTF(4)("Creating a MultiPlayerWorld\n");
     
    102102ErrorMessage MultiPlayerWorld::preLoad()
    103103{
    104   static_cast<MultiPlayerWorld*>(this)->preLoad();
     104  static_cast<GameWorld*>(this)->preLoad();
    105105
    106106  /* the the single player specific stuff */
     
    113113ErrorMessage MultiPlayerWorld::load()
    114114{
    115   static_cast<MultiPlayerWorld*>(this)->load();
     115  static_cast<GameWorld*>(this)->load();
    116116
    117117  /* the the single player specific stuff here */
     
    124124ErrorMessage MultiPlayerWorld::postLoad()
    125125{
    126   static_cast<MultiPlayerWorld*>(this)->postLoad();
     126  static_cast<GameWorld*>(this)->postLoad();
    127127
    128128  /* the single player specific stuff here */
Note: See TracChangeset for help on using the changeset viewer.