Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 11, 2005, 2:42:55 PM (18 years ago)
Author:
bensch
Message:

orxonox/branches/controll: Should compile on windows again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/spaceshipcontrol/src/lib/graphics/graphics_engine.cc

    r6011 r6046  
    3636 #include "class_list.h"
    3737 #include "list.h"
    38  #include "model.h"
     38 #include "static_model.h"
    3939#endif
    4040using namespace std;
     
    283283  }
    284284  PRINTF(4)("Status: Using GLEW %s\n", glewGetString(GLEW_VERSION));
    285 
    286 }
     285}
     286
    287287
    288288/**
     
    320320    }
    321321    // REBUILDING MODELS
    322     const std::list<BaseObject*>* modelList = ClassList::getList(CL_MODEL);
     322    const std::list<BaseObject*>* modelList = ClassList::getList(CL_STATIC_MODEL);
    323323    if (texList != NULL)
    324324    {
    325325      std::list<BaseObject*>::const_iterator reModel;
    326326      for (reModel = modelList->begin(); reModel != modelList->end(); reModel++)
    327         dynamic_cast<Model*>(*reModel)->rebuild();
     327        dynamic_cast<StaticModel*>(*reModel)->rebuild();
    328328    }
    329329#endif /* __WIN32__ */
Note: See TracChangeset for help on using the changeset viewer.