(float min, float max, float value)
| 1258 | } |
| 1259 | |
| 1260 | private static float ClampCvar(float min, float max, float value) { |
| 1261 | if (value < min) |
| 1262 | return min; |
| 1263 | if (value > max) |
| 1264 | return max; |
| 1265 | return value; |
| 1266 | } |
| 1267 | |
| 1268 | private static void ControlsSetMenuItemValues() { |
| 1269 | s_options_sfxvolume_slider.curvalue = Cvar.getInstance().VariableValue("s_volume") * 10; |
no outgoing calls
no test coverage detected