| 3075 | } |
| 3076 | |
| 3077 | static bool GUI_StrategicMap_FastForwardToggleWithESC(void) |
| 3078 | { |
| 3079 | if (Input_Keyboard_NextKey() == 0) return s_strategicMapFastForward; |
| 3080 | |
| 3081 | if (Input_WaitForValidInput() != 0x1B) return s_strategicMapFastForward; |
| 3082 | |
| 3083 | s_strategicMapFastForward = !s_strategicMapFastForward; |
| 3084 | |
| 3085 | Input_History_Clear(); |
| 3086 | |
| 3087 | return s_strategicMapFastForward; |
| 3088 | } |
| 3089 | |
| 3090 | static void GUI_StrategicMap_DrawText(const char *string) |
| 3091 | { |
no test coverage detected