(svn r13229) -Codechange: replace some global variables that are only initialised once and always with the same value with enums.
This commit is contained in:
@@ -11,4 +11,14 @@ enum IConsoleModes {
|
||||
ICONSOLE_CLOSED
|
||||
};
|
||||
|
||||
enum ConsoleColour {
|
||||
CC_DEFAULT = 1,
|
||||
CC_ERROR = 3,
|
||||
CC_WARNING = 13,
|
||||
CC_INFO = 8,
|
||||
CC_DEBUG = 5,
|
||||
CC_COMMAND = 2,
|
||||
CC_WHITE = 12,
|
||||
};
|
||||
|
||||
#endif /* CONSOLE_TYPE_H */
|
||||
|
Reference in New Issue
Block a user