| 198 | } |
| 199 | |
| 200 | bool ProcessInput() |
| 201 | { |
| 202 | if (PauseMode == 2) { |
| 203 | return false; |
| 204 | } |
| 205 | |
| 206 | plrctrls_every_frame(); |
| 207 | |
| 208 | if (!gbIsMultiplayer && gmenu_is_active()) { |
| 209 | RedrawViewport(); |
| 210 | return false; |
| 211 | } |
| 212 | |
| 213 | if (!gmenu_is_active() && sgnTimeoutCurs == CURSOR_NONE) { |
| 214 | #ifdef __vita__ |
| 215 | FinishSimulatedMouseClicks(MousePosition); |
| 216 | #endif |
| 217 | CheckCursMove(); |
| 218 | plrctrls_after_check_curs_move(); |
| 219 | RepeatMouseAction(); |
| 220 | } |
| 221 | |
| 222 | return true; |
| 223 | } |
| 224 | |
| 225 | void LeftMouseCmd(bool bShift) |
| 226 | { |
no test coverage detected