From a9b25c2f6fa60977c695c47e45639a1ee626e14c Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Thu, 12 May 2022 11:43:32 -0700 Subject: [PATCH] Client: Regular prints will now use Font_DrawText. --- src/client/prints.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/prints.qc b/src/client/prints.qc index d86557c3..8bee437e 100644 --- a/src/client/prints.qc +++ b/src/client/prints.qc @@ -30,7 +30,7 @@ Print_Draw(void) } for (int i = 0; i < 5; i++) { - drawstring(pos, pSeat->m_strPrintBuffer[i], [12,12], [1,1,1], 1.0f, 0); + Font_DrawText_A(pos, pSeat->m_strPrintBuffer[i], 1.0f, FONT_CON); pos[1] += 14; } }