Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 4, 2009, 12:28:59 PM (14 years ago)
Author:
rgrieder
Message:

Renamed CommandLine to CommandLineParse to avoid confusions with the class name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/gamestates/GSDedicated.cc

    r5929 r6021  
    3636#include "util/Debug.h"
    3737#include "util/Sleep.h"
    38 #include "core/CommandLine.h"
     38#include "core/CommandLineParse.h"
    3939#include "core/CommandExecutor.h"
    4040#include "core/Game.h"
     
    8181#endif
    8282
    83         this->server_ = new Server(CommandLine::getValue("port"));
     83        this->server_ = new Server(CommandLineParser::getValue("port"));
    8484        COUT(0) << "Loading scene in server mode" << std::endl;
    8585
     
    9191        this->server_->close();
    9292        delete this->server_;
    93        
     93
    9494        closeThread_ = true;
    9595#ifdef ORXONOX_PLATFORM_UNIX
     
    138138                        escapeChar = 2;
    139139                        continue;
    140                     }
     140}
    141141                    else if ( escapeChar == 2 )
    142142                    {
Note: See TracChangeset for help on using the changeset viewer.