* Begin configuring the buttons by placing the video and joystick * subsystems into a well-known state. Button configuration really * needs to be cleaned up after the new config system is in place. */
| 1380 | * needs to be cleaned up after the new config system is in place. |
| 1381 | */ |
| 1382 | int ButtonConfigBegin() |
| 1383 | { |
| 1384 | // initialize the joystick subsystem (if not already inited) |
| 1385 | InitJoysticks(); |
| 1386 | |
| 1387 | buttonConfigInProgress = 1; |
| 1388 | |
| 1389 | return 1; |
| 1390 | } |
| 1391 | |
| 1392 | /** |
| 1393 | * Finish configuring the buttons by reverting the video and joystick |
no test coverage detected