| 1156 | |
| 1157 | static int MiO_GetSensitivity(void) { return Camera.Sensitivity; } |
| 1158 | static void MiO_SetSensitivity(int v) { |
| 1159 | Camera.Sensitivity = v; |
| 1160 | Options_SetInt(OPT_SENSITIVITY, v); |
| 1161 | } |
| 1162 | |
| 1163 | static void MiscSettingsScreen_InitWidgets(struct MenuOptionsScreen* s) { |
| 1164 | MenuOptionsScreen_BeginButtons(s); |
nothing calls this directly
no test coverage detected