Client: Regular prints will now use Font_DrawText.

This commit is contained in:
Marco Cawthorne 2022-05-12 11:43:32 -07:00
parent 7048cea248
commit a9b25c2f6f
Signed by: eukara
GPG Key ID: C196CD8BA993248A
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}