================== SCR_DrawTextLeftAlign ================== */
| 161 | ================== |
| 162 | */ |
| 163 | void SCR_DrawTextLeftAlign( float &y, const char *text, ... ) { |
| 164 | char string[MAX_STRING_CHARS]; |
| 165 | va_list argptr; |
| 166 | va_start( argptr, text ); |
| 167 | idStr::vsnPrintf( string, sizeof( string ), text, argptr ); |
| 168 | va_end( argptr ); |
| 169 | renderSystem->DrawSmallStringExt( 0, y + 2, string, colorWhite, true, localConsole.charSetShader ); |
| 170 | y += SMALLCHAR_HEIGHT + 4; |
| 171 | } |
| 172 | |
| 173 | /* |
| 174 | ================== |
no test coverage detected