================= UI_DrawKeyBindStatus ================= */
| 3707 | ================= |
| 3708 | */ |
| 3709 | static void UI_DrawKeyBindStatus(rectDef_t *rect, float scale, vec4_t color, int textStyle, int iFontIndex) |
| 3710 | { |
| 3711 | if (Display_KeyBindPending()) |
| 3712 | { |
| 3713 | #ifdef JK2_MODE |
| 3714 | Text_Paint(rect->x, rect->y, scale, color, ui.SP_GetStringTextString("MENUS_WAITINGFORKEY"), 0, textStyle, iFontIndex); |
| 3715 | #else |
| 3716 | Text_Paint(rect->x, rect->y, scale, color, SE_GetString("MENUS_WAITINGFORKEY"), 0, textStyle, iFontIndex); |
| 3717 | #endif |
| 3718 | } |
| 3719 | else |
| 3720 | { |
| 3721 | // Text_Paint(rect->x, rect->y, scale, color, ui.SP_GetStringTextString("MENUS_ENTERTOCHANGE"), 0, textStyle, iFontIndex); |
| 3722 | } |
| 3723 | } |
| 3724 | |
| 3725 | /* |
| 3726 | ================= |
no test coverage detected