void SCR_DrawBigString( int x, int y, const char *s, float alpha ) { float color[4]; color[0] = color[1] = color[2] = 1.0; color[3] = alpha; SCR_DrawBigStringExt( x, y, s, color, qfalse ); }
void SCR_DrawBigString( int x, int y, const char *s, float alpha, qboolean noColorEscape ) { float color[4]; color[0] = color[1] = color[2] = 1.0; color[3] = alpha; SCR_DrawBigStringExt( x, y, s, color, qfalse, noColorEscape ); }
void SCR_DrawBigStringColor( int x, int y, const char *s, vec4_t color ) { SCR_DrawBigStringExt( x, y, s, color, qtrue ); }
void SCR_DrawBigStringColor( int x, int y, const char *s, vec4_t color, qboolean noColorEscape ) { SCR_DrawBigStringExt( x, y, s, color, qtrue, noColorEscape ); }