Changeset 7729 in orxonox.OLD for trunk/src/lib/gui
- Timestamp:
- May 19, 2006, 3:07:09 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/gui/gtk_gui/gui_exec.cc
r7661 r7729 76 76 #ifdef DEBUG 77 77 verboseMode = new Menu(CONFIG_NAME_VERBOSE_MODE, "nothing", 78 #if DEBUG >=178 #if DEBUG_LEVEL >=1 79 79 "error", 80 80 #endif 81 #if DEBUG >=281 #if DEBUG_LEVEL >=2 82 82 "warning", 83 83 #endif 84 #if DEBUG >=384 #if DEBUG_LEVEL >=3 85 85 "info", 86 86 #endif 87 #if DEBUG >=487 #if DEBUG_LEVEL >=4 88 88 "debug", 89 89 #endif 90 #if DEBUG >=590 #if DEBUG_LEVEL >=5 91 91 "heavydebug", 92 92 #endif … … 95 95 verboseMode->setDescription("Sets the Output Mode", "This Enables Outbug messages\n" 96 96 "0: nothing will be displayed, but stuff one cannot do without (eg.GUI)\n" 97 #if DEBUG >=197 #if DEBUG_LEVEL >=1 98 98 "1: error: outputs all the above and errors" 99 99 #endif 100 #if DEBUG >=2100 #if DEBUG_LEVEL >=2 101 101 "2: warning: outputs all the above plus warnings" 102 102 #endif 103 #if DEBUG >=3103 #if DEBUG_LEVEL >=3 104 104 "3: info: outputs all the above plus Information" 105 105 #endif 106 #if DEBUG >=4106 #if DEBUG_LEVEL >=4 107 107 "4: debug: displays all the above plus debug information" 108 108 #endif 109 #if DEBUG >=5109 #if DEBUG_LEVEL >=5 110 110 "5: heavydebug: displays all the above plus heavy debug information: WARNING: the game will run very slow with this." 111 111 #endif
Note: See TracChangeset
for help on using the changeset viewer.