mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 13:41:05 +00:00
- externalized the GZDoom-exclusive strings in Menudefs.enu
This commit is contained in:
parent
939823a141
commit
8f53632317
2 changed files with 19 additions and 8 deletions
|
@ -2540,3 +2540,14 @@ MUSIC_ULTIMA = "ultima";
|
|||
MUSIC_READ_M = "read_m";
|
||||
MUSIC_DM2TTL = "dm2ttl";
|
||||
MUSIC_DM2INT = "dm2int";
|
||||
|
||||
// GZDoom exclusive:
|
||||
|
||||
DSPLYMNU_GLOPT = "OpenGL Options";
|
||||
DSPLYMNU_GAMMA = "Gamma correction";
|
||||
DSPLYMNU_CONTRAST ="Contrast";
|
||||
|
||||
GLMNU_TITLE = "OPENGL OPTIONS";
|
||||
GLMNU_DYNLIGHT = "Dynamic Light Options";
|
||||
GLMNU_TEXOPT = "Texture Options";
|
||||
GLMNU_PREFS = "Preferences";
|
||||
|
|
|
@ -652,24 +652,24 @@ OptionValue Fuzziness
|
|||
|
||||
OptionMenu "OpenGLOptions"
|
||||
{
|
||||
Title "OPENGL OPTIONS"
|
||||
Submenu "Dynamic Light Options", "GLLightOptions"
|
||||
Submenu "Texture Options", "GLTextureGLOptions"
|
||||
Submenu "Preferences", "GLPrefOptions"
|
||||
Title "$GLMNU_TITLE"
|
||||
Submenu "$GLMNU_DYNLIGHT", "GLLightOptions"
|
||||
Submenu "$GLMNU_TEXOPT", "GLTextureGLOptions"
|
||||
Submenu "$GLMNU_PREFS", "GLPrefOptions"
|
||||
}
|
||||
|
||||
OptionMenu "VideoOptions"
|
||||
{
|
||||
Title "$DSPLYMNU_TITLE"
|
||||
|
||||
Submenu "OpenGL Options", "OpenGLOptions"
|
||||
Submenu "$DSPLYMNU_GLOPT", "OpenGLOptions"
|
||||
Submenu "$DSPLYMNU_SCOREBOARD", "ScoreboardOptions"
|
||||
StaticText " "
|
||||
Slider "$DSPLYMNU_SCREENSIZE", "screenblocks", 3.0, 12.0, 1.0, 0
|
||||
|
||||
Slider "Gamma correction", "Gamma", 0.75, 3.0, 0.05, 2
|
||||
Slider "Brightness", "vid_brightness", -0.8,0.8, 0.05
|
||||
Slider "Contrast", "vid_contrast", 0.1, 3.0, 0.1
|
||||
Slider "$DSPLYMNU_GAMMA", "Gamma", 0.75, 3.0, 0.05, 2
|
||||
Slider "$DSPLYMNU_BRIGHTNESS", "vid_brightness", -0.8,0.8, 0.05
|
||||
Slider "$DSPLYMNU_CONTRAST", "vid_contrast", 0.1, 3.0, 0.1
|
||||
|
||||
Option "$DSPLYMNU_VSYNC", "vid_vsync", "OnOff"
|
||||
Option "$DSPLYMNU_CAPFPS", "cl_capfps", "OffOn"
|
||||
|
|
Loading…
Reference in a new issue