Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 29, 2008, 10:22:53 AM (16 years ago)
Author:
landauf
Message:
  • small char-length tweaking for my system (because i have to show the shell)
  • fixed bug causing orxonox to loop forever when loading the config file (you'll like this, felix)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network/src/orxonox/console/InGameConsole.cc

    r1473 r1477  
    4747
    4848#define LINES 30
    49 #define CHAR_WIDTH1 7.34 // fix this please - determine the char-width dynamically
     49#define CHAR_WIDTH1 7.78 //34 // fix this please - determine the char-width dynamically
    5050#define CHAR_WIDTH2 8.28 // fix this please - determine the char-width dynamically
    51 #define CHAR_WIDTH3 7.78 // fix this please - determine the char-width dynamically
     51#define CHAR_WIDTH3 7.80 //78 // fix this please - determine the char-width dynamically
    5252
    5353namespace orxonox
     
    465465        static std::string char2 = "Z4";
    466466
    467         if (pos > maxCharsPerLine_)
     467        if (pos > (int)maxCharsPerLine_)
    468468          pos = maxCharsPerLine_;
    469469        else if (pos < 0)
Note: See TracChangeset for help on using the changeset viewer.