Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5974


Ignore:
Timestamp:
Oct 20, 2009, 10:49:22 PM (14 years ago)
Author:
rgrieder
Message:

Fixed low fps problem when the console is running (removed timeout that previously idled the second thread)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/libraries/core/IOConsole.cc

    r5973 r5974  
    8181        new_settings.c_lflag &= ~(ICANON | ECHO);
    8282        //         new_settings.c_lflag |= ( ISIG | IEXTEN );
    83         new_settings.c_cc[VTIME] = 1;
     83        new_settings.c_cc[VTIME] = 0;
    8484        new_settings.c_cc[VMIN]  = 0;
    8585        tcsetattr(0, TCSANOW, &new_settings);
Note: See TracChangeset for help on using the changeset viewer.