mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 05:31:00 +00:00
- fixed numeric output precision for a few sliders.
This commit is contained in:
parent
3f57269a8b
commit
6e0defdc69
1 changed files with 5 additions and 5 deletions
|
@ -667,8 +667,8 @@ OptionMenu "VideoOptions"
|
||||||
Slider "$DSPLYMNU_BRIGHTNESS", "Gamma", 0.75, 3.0, 0.05, 2
|
Slider "$DSPLYMNU_BRIGHTNESS", "Gamma", 0.75, 3.0, 0.05, 2
|
||||||
Option "$DSPLYMNU_VSYNC", "vid_vsync", "OnOff"
|
Option "$DSPLYMNU_VSYNC", "vid_vsync", "OnOff"
|
||||||
Option "$DSPLYMNU_CAPFPS", "cl_capfps", "OffOn"
|
Option "$DSPLYMNU_CAPFPS", "cl_capfps", "OffOn"
|
||||||
Slider "$DSPLYMNU_BLOODFADE", "blood_fade_scalar", 0.0, 1.0, 0.05, 1
|
Slider "$DSPLYMNU_BLOODFADE", "blood_fade_scalar", 0.0, 1.0, 0.05, 2
|
||||||
Slider "$DSPLYMNU_PICKUPFADE", "pickup_fade_scalar", 0.0, 1.0, 0.05, 1
|
Slider "$DSPLYMNU_PICKUPFADE", "pickup_fade_scalar", 0.0, 1.0, 0.05, 2
|
||||||
Option "$DSPLYMNU_COLUMNMETHOD", "r_columnmethod", "ColumnMethods"
|
Option "$DSPLYMNU_COLUMNMETHOD", "r_columnmethod", "ColumnMethods"
|
||||||
|
|
||||||
StaticText " "
|
StaticText " "
|
||||||
|
@ -700,7 +700,7 @@ OptionMenu "VideoOptions"
|
||||||
ColorPicker "$DSPLYMNU_DIMCOLOR", "dimcolor"
|
ColorPicker "$DSPLYMNU_DIMCOLOR", "dimcolor"
|
||||||
Slider "$DSPLYMNU_MOVEBOB", "movebob", 0, 1.0, 0.05, 2
|
Slider "$DSPLYMNU_MOVEBOB", "movebob", 0, 1.0, 0.05, 2
|
||||||
Slider "$DSPLYMNU_STILLBOB", "stillbob", 0, 1.0, 0.05, 2
|
Slider "$DSPLYMNU_STILLBOB", "stillbob", 0, 1.0, 0.05, 2
|
||||||
Slider "$DSPLYMNU_BOBSPEED", "wbobspeed", 0, 2.0, 0.1, 2
|
Slider "$DSPLYMNU_BOBSPEED", "wbobspeed", 0, 2.0, 0.1
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1242,7 +1242,7 @@ OptionMenu GameplayOptions
|
||||||
Title "$GMPLYMNU_TITLE"
|
Title "$GMPLYMNU_TITLE"
|
||||||
//Indent 222
|
//Indent 222
|
||||||
Option "$GMPLYMNU_TEAMPLAY", "teamplay", "OnOff"
|
Option "$GMPLYMNU_TEAMPLAY", "teamplay", "OnOff"
|
||||||
Slider "$GMPLYMNU_TEAMDAMAGE", "teamdamage", 0, 1, 0.05
|
Slider "$GMPLYMNU_TEAMDAMAGE", "teamdamage", 0, 1, 0.05,2
|
||||||
StaticText " "
|
StaticText " "
|
||||||
Option "$GMPLYMNU_SMARTAUTOAIM", "sv_smartaim", "SmartAim"
|
Option "$GMPLYMNU_SMARTAUTOAIM", "sv_smartaim", "SmartAim"
|
||||||
StaticText " "
|
StaticText " "
|
||||||
|
@ -1792,7 +1792,7 @@ OptionMenu NetworkOptions
|
||||||
StaticText "$NETMNU_LOCALOPTIONS", 1
|
StaticText "$NETMNU_LOCALOPTIONS", 1
|
||||||
Option "$NETMNU_MOVEPREDICTION", "cl_noprediction", "OffOn"
|
Option "$NETMNU_MOVEPREDICTION", "cl_noprediction", "OffOn"
|
||||||
Option "$NETMNU_LINESPECIALPREDICTION", "cl_predict_specials", "OnOff"
|
Option "$NETMNU_LINESPECIALPREDICTION", "cl_predict_specials", "OnOff"
|
||||||
Slider "$NETMNU_PREDICTIONLERPSCALE", "cl_predict_lerpscale", 0.0, 0.5, 0.05
|
Slider "$NETMNU_PREDICTIONLERPSCALE", "cl_predict_lerpscale", 0.0, 0.5, 0.05, 2
|
||||||
Slider "$NETMNU_LERPTHRESHOLD", "cl_predict_lerpthreshold", 0.1, 16.0, 0.1
|
Slider "$NETMNU_LERPTHRESHOLD", "cl_predict_lerpthreshold", 0.1, 16.0, 0.1
|
||||||
StaticText " "
|
StaticText " "
|
||||||
StaticText "$NETMNU_HOSTOPTIONS", 1
|
StaticText "$NETMNU_HOSTOPTIONS", 1
|
||||||
|
|
Loading…
Reference in a new issue