| 546 | |
| 547 | static cc_bool ClO_GetInvert(void) { return Camera.Invert; } |
| 548 | static void ClO_SetInvert(cc_bool v) { |
| 549 | Camera.Invert = v; |
| 550 | Options_SetBool(OPT_INVERT_MOUSE, v); |
| 551 | } |
| 552 | |
| 553 | static int ClO_GetViewDist(void) { |
| 554 | if (Game_ViewDistance >= 512) return VIEW_FAR; |
nothing calls this directly
no test coverage detected