| 680 | } |
| 681 | |
| 682 | static cc_bool BindTriggered_AutoRotate(int key, struct InputDevice* device) { |
| 683 | if (Gui.InputGrab) return false; |
| 684 | |
| 685 | InputHandler_Toggle(key, &AutoRotate_Enabled, |
| 686 | " &eAuto rotate is &aenabled", |
| 687 | " &eAuto rotate is &cdisabled"); |
| 688 | return true; |
| 689 | } |
| 690 | |
| 691 | static cc_bool BindTriggered_ThirdPerson(int key, struct InputDevice* device) { |
| 692 | if (Gui.InputGrab) return false; |
nothing calls this directly
no test coverage detected