| 274 | } |
| 275 | |
| 276 | void ui_DrawCenteredString(ddgr_color col, int xoff, int y, const char *str) { |
| 277 | grtext_SetFlags(m_UITextFlags); |
| 278 | grtext_SetAlpha(m_UICharAlpha); |
| 279 | grtext_SetColor(col); |
| 280 | grtext_CenteredPrintf(xoff, y, str); |
| 281 | grtext_Flush(); |
| 282 | } |
nothing calls this directly
no test coverage detected