----------------------------------------------------------------- ForceShutdown Purpose: Puts the Force Feedback system on pause while the application is doing other things (like it lost focus) -----------------------------------------------------------------
| 210 | // is doing other things (like it lost focus) |
| 211 | // ----------------------------------------------------------------- |
| 212 | void ForceShutdown(void) { |
| 213 | D3Force_pause = true; |
| 214 | |
| 215 | ForceClose(); |
| 216 | if (D3Force_init) { |
| 217 | mprintf(0, "Force: Shutting down Force Feedback System\n"); |
| 218 | ddio_ffb_Pause(kJoy1); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | // ------------------------------------------------------------------ |
| 223 | // ForceRestart |
no test coverage detected