| 582 | |
| 583 | static cc_bool ClO_GetViewBob(void) { return Game_ViewBobbing; } |
| 584 | static void ClO_SetViewBob(cc_bool v) { |
| 585 | Game_ViewBobbing = v; |
| 586 | Options_SetBool(OPT_VIEW_BOBBING, v); |
| 587 | } |
| 588 | |
| 589 | static cc_bool ClO_GetFPS(void) { return Game_FpsLimit == FPS_LIMIT_VSYNC; } |
| 590 | static void ClO_SetFPS(cc_bool v) { |
nothing calls this directly
no test coverage detected