# | Line 10 | Line 10 | void DDrConsole_Print(const char* text) | |
---|---|---|
10 | COrTextArea_Print(COgConsoleLines, 1, COgDefaultTextShade, COgDefaultTextShadow, text, 0, COgFadeTimeValue); | |
11 | } | |
12 | ||
13 | + | void DDrConsole_PrintColored(const char* text, int priority, RGBA color, RGBA shade) |
14 | + | { |
15 | + | int* intcolor = (int*)&color; |
16 | + | int* intshade = (int*)&shade; |
17 | + | COrTextArea_Print(COgConsoleLines, 1, *intcolor, *intshade, text, 0, COgFadeTimeValue); |
18 | + | } |
19 | + | |
20 | void DDrConsole_PrintF(const char* fmt, ...) | |
21 | { | |
22 | va_list ap; |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |