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/single_player_world.cc

    r6363 r6364  
    8888void SinglePlayerWorld::loadParams(const TiXmlElement* root)
    8989{
    90   static_cast<SinglePlayerWorld*>(this)->loadParams(root);
     90  static_cast<GameWorld*>(this)->loadParams(root);
    9191
    9292  PRINTF(4)("Creating a SinglePlayerWorld\n");
     
    103103ErrorMessage SinglePlayerWorld::preLoad()
    104104{
    105   static_cast<SinglePlayerWorld*>(this)->preLoad();
     105  static_cast<GameWorld*>(this)->preLoad();
    106106
    107107  /* the the single player specific stuff */
     
    114114ErrorMessage SinglePlayerWorld::load()
    115115{
    116   static_cast<SinglePlayerWorld*>(this)->load();
     116  static_cast<GameWorld*>(this)->load();
    117117
    118118  /* the the single player specific stuff here */
     
    136136ErrorMessage SinglePlayerWorld::postLoad()
    137137{
    138   static_cast<SinglePlayerWorld*>(this)->postLoad();
     138  static_cast<GameWorld*>(this)->postLoad();
    139139
    140140  /* the single player specific stuff here */
Note: See TracChangeset for help on using the changeset viewer.