Fix snapping of extra multiplayer text. (Resolves #101)

This commit is contained in:
toaster 2020-01-10 12:50:58 +00:00
parent ced5ca81a4
commit cbbc76b673
1 changed files with 1 additions and 1 deletions

View File

@ -2208,7 +2208,7 @@ static void ST_drawTextHUD(void)
#define textHUDdraw(str) \ #define textHUDdraw(str) \
{\ {\
V_DrawThinString(16, y, V_PERPLAYER|V_HUDTRANS|V_SNAPTOLEFT|V_SNAPTOBOTTOM, str);\ V_DrawThinString(16, y, V_PERPLAYER|V_HUDTRANS|V_SNAPTOLEFT|V_SNAPTOTOP, str);\
y += 8;\ y += 8;\
} }