| 3061 | } |
| 3062 | |
| 3063 | static int16 GUI_StrategicMap_ClickedRegion(void) |
| 3064 | { |
| 3065 | uint16 key; |
| 3066 | |
| 3067 | GUI_StrategicMap_AnimateArrows(); |
| 3068 | |
| 3069 | if (Input_Keyboard_NextKey() == 0) return 0; |
| 3070 | |
| 3071 | key = Input_WaitForValidInput(); |
| 3072 | if (key != 0xC6 && key != 0xC7) return 0; |
| 3073 | |
| 3074 | return g_fileRgnclkCPS[(g_mouseClickY - 24) * 304 + g_mouseClickX - 8]; |
| 3075 | } |
| 3076 | |
| 3077 | static bool GUI_StrategicMap_FastForwardToggleWithESC(void) |
| 3078 | { |
no test coverage detected