mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed some missing menu texts.
This commit is contained in:
parent
1f5f7c63fe
commit
08ec38ce75
3 changed files with 8 additions and 4 deletions
|
@ -149,10 +149,10 @@ CUSTOM_CVARD(Int, snd_mixrate, 44100, CVAR_ARCHIVE|CVAR_GLOBALCONFIG, "sound mix
|
|||
else if (self > 48000) self = 48000;
|
||||
}
|
||||
|
||||
CUSTOM_CVARD(Int, snd_speech, 5, CVAR_ARCHIVE|CVAR_GLOBALCONFIG, "enables/disables player speech")
|
||||
CUSTOM_CVARD(Int, snd_speech, 1, CVAR_ARCHIVE|CVAR_GLOBALCONFIG, "enables/disables player speech")
|
||||
{
|
||||
if (self < 0) self = 0;
|
||||
else if (self > 5) self = 5;
|
||||
else if (self > 1) self = 1;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -666,6 +666,9 @@ Preset Resolution Modes,VIDMNU_RESPRESETHEAD,,,,Přednastavená rozlišení,Vord
|
|||
5:4 Aspect,VIDMNU_ASPECT54,,,,Poměr stran 5:4,5:4 Seitenverhältnis,,5:4 Proporcio,Aspecto 5:4,,5:4-tilat,Rapport 5:4,,Aspetto 5:4,5:4アスペクト比,5:4 비율,,Proporcje 5:4,Proporção 5:4,,,Соотношение сторон 5:4,5:4 гледиште
|
||||
16:9 Aspect,VIDMNU_ASPECT169,,,,Poměr stran 16:9,16:9 Seitenverhältnis,,16:9 Proporcio,Aspecto 16:9,,16:9-tilat,Rapport 16:9,,Aspetto 16:9,16:9アスペクト比,16:9 비율,,Proporcje 16:9,Proporção 16:9,,,Соотношение сторон 16:9,16:9 гледиште
|
||||
16:10 Aspect,VIDMNU_ASPECT1610,,,,Poměr stran 16:10,16.10 Seitenverhältnis,,16:10 Proporcio,Aspecto 16:10,,16:10-tilat,Rapport 16:10,,Aspetto 16:10,16:10アスペクト比,16:10 비율,,Proporcje 16:10,Proporção 16:10,,,Соотношение сторон 16:10,16:10 гледиште
|
||||
Normal,OPTVAL_NORMAL,,,,Normální,,,Normala,,,Normaali,,,Normale,通常,기본형,Normaal,Normalny,Normal,,,Обычный,Нормално
|
||||
Lowest Possible Scale,OPTVAL_LOWEST,"This describes vid_scalemode 6, which represents the lowest possible scaling to fill the allocated screen area",,,Nejmenší možná velikost,Kleinstmögliche Auflösung,,Plej Malpli Ebla Skalo,Menor Escala Posible,,,Echelle la plus faible,,,可能な限り最小,,,,Menor Escala Possível,,Cea mai mică scară posibilă,,
|
||||
Custom,OPTVAL_CUSTOM,,,,Vlastní,Benutzerdefiniert,,Laŭmenda,Personalizado,,Mukautettu,Modifié,,Personalizzato,カスタム,사용자 지정,Gebruiker gedefinieerd,Niestandardowe,Personalizado,,Personalizat,Польз.,Прилагођ.
|
||||
Max FPS,VIDMNU_MAXFPS,,,,,,,,,,,,,,,,,,,,,,
|
||||
Unlimited,OPTVAL_UNLIMITED,,,,,Unlimitiert,,,,,,,,,,,,,,,,,
|
||||
60 fps,OPTVAL_60FPS,,,,,,,,,,,,,,,,,,,,,,
|
||||
|
|
|
|
@ -1508,12 +1508,13 @@ OptionValue Ratios
|
|||
}
|
||||
OptionValue ScaleModes
|
||||
{
|
||||
0, "$OPTVAL_SCALENORMAL"
|
||||
1, "$OPTVAL_SCALEMINIMAL"
|
||||
0, "$OPTVAL_NORMAL"
|
||||
6, "320x200"
|
||||
2, "640x400"
|
||||
3, "960x600"
|
||||
4, "1280x800"
|
||||
5, "$OPTVAL_CUSTOM"
|
||||
1, "$OPTVAL_LOWEST"
|
||||
}
|
||||
OptionValue CropAspect
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue