(Object unused)
| 1254 | } |
| 1255 | |
| 1256 | static void NoAltTabFunc(Object unused) { |
| 1257 | Cvar.getInstance().SetValue("win_noalttab", s_options_noalttab_box.curvalue); |
| 1258 | } |
| 1259 | |
| 1260 | private static float ClampCvar(float min, float max, float value) { |
| 1261 | if (value < min) |
nothing calls this directly
no test coverage detected