Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7624


Ignore:
Timestamp:
Nov 6, 2010, 5:26:55 PM (13 years ago)
Author:
rgrieder
Message:

IOConsole does not seem to work properly with the Unix console on Mac OS X.
And the XCode console does not support the ANSI characters at all (how to check for XCode debugger at runtime?).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ois_update/src/libraries/core/Core.cc

    r7427 r7624  
    8181
    8282    SetCommandLineArgument(settingsFile, "orxonox.ini").information("THE configuration file");
     83#ifndef ORXONOX_PLATFORM_APPLE
    8384    SetCommandLineSwitch(noIOConsole).information("Use this if you don't want to use the IOConsole (for instance for Lua debugging)");
     85#endif
    8486
    8587#ifdef ORXONOX_PLATFORM_WINDOWS
     
    154156        this->setConfigValues();
    155157
    156         // create persistent io console
     158#ifndef ORXONOX_PLATFORM_APPLE
     159        // Create persistent IO console
    157160        if (CommandLineParser::getValue("noIOConsole").getBool())
    158161        {
     
    161164        if (this->bStartIOConsole_)
    162165            this->ioConsole_.reset(new IOConsole());
     166#endif
    163167
    164168        // creates the class hierarchy for all classes with factories
Note: See TracChangeset for help on using the changeset viewer.