mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-03-09 10:51:35 +00:00
Lower maximum volume (to work better with Quest maximum volume)
This commit is contained in:
parent
a8a6a9f37d
commit
51fd7a9b61
3 changed files with 6 additions and 6 deletions
|
@ -317,7 +317,7 @@ static void UI_SoundOptionsMenu_Init( void ) {
|
||||||
soundOptionsInfo.sfxvolume.generic.x = 400;
|
soundOptionsInfo.sfxvolume.generic.x = 400;
|
||||||
soundOptionsInfo.sfxvolume.generic.y = y;
|
soundOptionsInfo.sfxvolume.generic.y = y;
|
||||||
soundOptionsInfo.sfxvolume.minvalue = 0;
|
soundOptionsInfo.sfxvolume.minvalue = 0;
|
||||||
soundOptionsInfo.sfxvolume.maxvalue = 10;
|
soundOptionsInfo.sfxvolume.maxvalue = 8;
|
||||||
|
|
||||||
y += BIGCHAR_HEIGHT+2;
|
y += BIGCHAR_HEIGHT+2;
|
||||||
soundOptionsInfo.musicvolume.generic.type = MTYPE_SLIDER;
|
soundOptionsInfo.musicvolume.generic.type = MTYPE_SLIDER;
|
||||||
|
@ -328,7 +328,7 @@ static void UI_SoundOptionsMenu_Init( void ) {
|
||||||
soundOptionsInfo.musicvolume.generic.x = 400;
|
soundOptionsInfo.musicvolume.generic.x = 400;
|
||||||
soundOptionsInfo.musicvolume.generic.y = y;
|
soundOptionsInfo.musicvolume.generic.y = y;
|
||||||
soundOptionsInfo.musicvolume.minvalue = 0;
|
soundOptionsInfo.musicvolume.minvalue = 0;
|
||||||
soundOptionsInfo.musicvolume.maxvalue = 10;
|
soundOptionsInfo.musicvolume.maxvalue = 8;
|
||||||
|
|
||||||
y += BIGCHAR_HEIGHT+2;
|
y += BIGCHAR_HEIGHT+2;
|
||||||
soundOptionsInfo.soundSystem.generic.type = MTYPE_SPINCONTROL;
|
soundOptionsInfo.soundSystem.generic.type = MTYPE_SPINCONTROL;
|
||||||
|
|
|
@ -486,7 +486,7 @@ itemDef {
|
||||||
group grpSystem
|
group grpSystem
|
||||||
type ITEM_TYPE_SLIDER
|
type ITEM_TYPE_SLIDER
|
||||||
text "Effects Volume:"
|
text "Effects Volume:"
|
||||||
cvarfloat "s_volume" 0.7 0 1
|
cvarfloat "s_volume" 0.1 0 0.8
|
||||||
rect 0 65 256 20
|
rect 0 65 256 20
|
||||||
textalign ITEM_ALIGN_RIGHT
|
textalign ITEM_ALIGN_RIGHT
|
||||||
textalignx 128
|
textalignx 128
|
||||||
|
@ -501,7 +501,7 @@ itemDef {
|
||||||
group grpSystem
|
group grpSystem
|
||||||
type ITEM_TYPE_SLIDER
|
type ITEM_TYPE_SLIDER
|
||||||
text "Music Volume:"
|
text "Music Volume:"
|
||||||
cvarfloat "s_musicvolume" 0.25 0 1
|
cvarfloat "s_musicvolume" 0.1 0 0.8
|
||||||
rect 0 85 256 20
|
rect 0 85 256 20
|
||||||
textalign ITEM_ALIGN_RIGHT
|
textalign ITEM_ALIGN_RIGHT
|
||||||
textalignx 128
|
textalignx 128
|
||||||
|
|
|
@ -513,7 +513,7 @@ itemDef {
|
||||||
group grpSystem
|
group grpSystem
|
||||||
type ITEM_TYPE_SLIDER
|
type ITEM_TYPE_SLIDER
|
||||||
text "Effects Volume:"
|
text "Effects Volume:"
|
||||||
cvarfloat "s_volume" 0.7 0 1
|
cvarfloat "s_volume" 0.1 0 0.8
|
||||||
rect 99 92 256 20
|
rect 99 92 256 20
|
||||||
textalign ITEM_ALIGN_RIGHT
|
textalign ITEM_ALIGN_RIGHT
|
||||||
textalignx 128
|
textalignx 128
|
||||||
|
@ -528,7 +528,7 @@ itemDef {
|
||||||
group grpSystem
|
group grpSystem
|
||||||
type ITEM_TYPE_SLIDER
|
type ITEM_TYPE_SLIDER
|
||||||
text "Music Volume:"
|
text "Music Volume:"
|
||||||
cvarfloat "s_musicvolume" 0.25 0 1
|
cvarfloat "s_musicvolume" 0.1 0 0.8
|
||||||
rect 99 119 256 20
|
rect 99 119 256 20
|
||||||
textalign ITEM_ALIGN_RIGHT
|
textalign ITEM_ALIGN_RIGHT
|
||||||
textalignx 128
|
textalignx 128
|
||||||
|
|
Loading…
Reference in a new issue