* ControllerWindowLeftClick / ControllerWindowRightsClick * * Callbacks for controller window arrows. Responds arrow clicks. ***************************************************************************/
| 1249 | * Callbacks for controller window arrows. Responds arrow clicks. |
| 1250 | ***************************************************************************/ |
| 1251 | static void ControllerWindowLeftClick(void * ptr) { ControllerWindowUpdate(ptr, -1); } |
| 1252 | static void ControllerWindowRightClick(void * ptr) { ControllerWindowUpdate(ptr, +1); } |
| 1253 | |
| 1254 | /**************************************************************************** |
nothing calls this directly
no test coverage detected