diff options
Diffstat (limited to 'src/client/screen.c')
-rw-r--r-- | src/client/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/screen.c b/src/client/screen.c index a981794..906d684 100644 --- a/src/client/screen.c +++ b/src/client/screen.c @@ -1505,13 +1505,13 @@ STAT PROGRAMS R_DrawString(x, y, 0, MAX_STRING_CHARS, string, scr.font_pic) #define HUD_DrawAltString(x, y, string) \ - R_DrawString(x, y, UI_ALTCOLOR, MAX_STRING_CHARS, string, scr.font_pic) + R_DrawString(x, y, UI_XORCOLOR, MAX_STRING_CHARS, string, scr.font_pic) #define HUD_DrawCenterString(x, y, string) \ SCR_DrawStringMulti(x, y, UI_CENTER, MAX_STRING_CHARS, string, scr.font_pic) #define HUD_DrawAltCenterString(x, y, string) \ - SCR_DrawStringMulti(x, y, UI_CENTER|UI_ALTCOLOR, MAX_STRING_CHARS, string, scr.font_pic) + SCR_DrawStringMulti(x, y, UI_CENTER | UI_XORCOLOR, MAX_STRING_CHARS, string, scr.font_pic) static void HUD_DrawNumber(int x, int y, int color, int width, int value) { |