Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 24, 2008, 10:40:22 PM (16 years ago)
Author:
rgrieder
Message:
  • privatised InputState c'tors
  • added destruction code for GUIManager
  • fixed some issues and bugs
  • found 2400 memory leaks ;)
  • haven't done anything about it
  • converted GUIManager to Ogre Singleton
  • added NULL checkers in Loader
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/orxonox/Orxonox.cc

    r1645 r1646  
    115115    , inputManager_(0)
    116116    , radar_(0)
     117    , console_(0)
     118    , guiManager_(0)
    117119  {
    118120    RegisterRootObject(Orxonox);
     
    142144    if (this->radar_)
    143145      delete this->radar_;
     146
     147    if (this->guiManager_)
     148      delete guiManager_;
    144149
    145150    //if (this->auMan_)
     
    271276
    272277          // load the CEGUI interface
    273           GUIManager::getInstance().initialise();
     278          guiManager_ = new GUIManager();
     279          guiManager_->initialise();
    274280        }
    275281
Note: See TracChangeset for help on using the changeset viewer.