| 3416 | static void ScreenPositionWindowRightClick(void * ptr) { ScreenPositionWindowUpdate(ptr, +1, 0); } |
| 3417 | static void ScreenPositionWindowUpClick(void * ptr) { ScreenPositionWindowUpdate(ptr, 0, -1); } |
| 3418 | static void ScreenPositionWindowDownClick(void * ptr) { ScreenPositionWindowUpdate(ptr, 0, +1); } |
| 3419 | |
| 3420 | static void ScreenPositionWindow() |
| 3421 | { |
nothing calls this directly
no test coverage detected