Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 28, 2009, 1:47:57 PM (15 years ago)
Author:
rgrieder
Message:

Improved exception-safety in the Game class and fixed some issues and bugs resulting from the changes.

Location:
code/branches/core4/src/orxonox
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core4/src/orxonox/Main.cc

    r3196 r3238  
    6868        );
    6969
     70        orxonox.requestState("root");
    7071        orxonox.run();
    7172
  • code/branches/core4/src/orxonox/gamestates/GSGraphics.cc

    r3196 r3238  
    5757namespace orxonox
    5858{
    59     AddGameState(GSGraphics, "graphics", false);
     59    AddGameState(GSGraphics, "graphics", true);
    6060
    6161    GSGraphics::GSGraphics(const std::string& name, bool countTickTime)
     
    198198    void GSGraphics::toggleGUI()
    199199    {
    200             GUIManager::getInstance().executeCode("toggleGUI()");
     200        GUIManager::getInstance().executeCode("toggleGUI()");
    201201    }
    202202
  • code/branches/core4/src/orxonox/gamestates/GSRoot.cc

    r3196 r3238  
    4040namespace orxonox
    4141{
    42     AddGameState(GSRoot, "root", false);
     42    AddGameState(GSRoot, "root", true);
    4343    SetCommandLineSwitch(console);
    4444    // Shortcuts for easy direct loading
Note: See TracChangeset for help on using the changeset viewer.