| 1036 | |
| 1037 | static int HS_GetFOV(void) { return Camera.Fov; } |
| 1038 | static void HS_SetFOV(int fov) { |
| 1039 | if (Camera.ZoomFov > fov) Camera.ZoomFov = fov; |
| 1040 | Camera.DefaultFov = fov; |
| 1041 | |
| 1042 | Options_SetInt(OPT_FIELD_OF_VIEW, fov); |
| 1043 | Camera_SetFov(fov); |
| 1044 | } |
| 1045 | |
| 1046 | static void HacksSettingsScreen_CheckHacksAllowed(struct MenuOptionsScreen* s) { |
| 1047 | struct Widget** widgets = s->widgets; |
nothing calls this directly
no test coverage detected