mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-02-12 07:05:57 +00:00
Lower maximum volume even more
This commit is contained in:
parent
e293d58aa9
commit
e4a2c9bd43
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.y = y;
|
||||
soundOptionsInfo.sfxvolume.minvalue = 0;
|
||||
soundOptionsInfo.sfxvolume.maxvalue = 8;
|
||||
soundOptionsInfo.sfxvolume.maxvalue = 7;
|
||||
|
||||
y += BIGCHAR_HEIGHT+2;
|
||||
soundOptionsInfo.musicvolume.generic.type = MTYPE_SLIDER;
|
||||
|
@ -328,7 +328,7 @@ static void UI_SoundOptionsMenu_Init( void ) {
|
|||
soundOptionsInfo.musicvolume.generic.x = 400;
|
||||
soundOptionsInfo.musicvolume.generic.y = y;
|
||||
soundOptionsInfo.musicvolume.minvalue = 0;
|
||||
soundOptionsInfo.musicvolume.maxvalue = 8;
|
||||
soundOptionsInfo.musicvolume.maxvalue = 7;
|
||||
|
||||
y += BIGCHAR_HEIGHT+2;
|
||||
soundOptionsInfo.soundSystem.generic.type = MTYPE_SPINCONTROL;
|
||||
|
|
|
@ -419,7 +419,7 @@ itemDef {
|
|||
group grpSystem
|
||||
type ITEM_TYPE_SLIDER
|
||||
text "Effects Volume:"
|
||||
cvarfloat "s_volume" 0.1 0 0.8
|
||||
cvarfloat "s_volume" 0.1 0 0.7
|
||||
rect 0 65 256 20
|
||||
textalign ITEM_ALIGN_RIGHT
|
||||
textalignx 128
|
||||
|
@ -434,7 +434,7 @@ itemDef {
|
|||
group grpSystem
|
||||
type ITEM_TYPE_SLIDER
|
||||
text "Music Volume:"
|
||||
cvarfloat "s_musicvolume" 0.1 0 0.8
|
||||
cvarfloat "s_musicvolume" 0.1 0 0.7
|
||||
rect 0 85 256 20
|
||||
textalign ITEM_ALIGN_RIGHT
|
||||
textalignx 128
|
||||
|
|
|
@ -446,7 +446,7 @@ itemDef {
|
|||
group grpSystem
|
||||
type ITEM_TYPE_SLIDER
|
||||
text "Effects Volume:"
|
||||
cvarfloat "s_volume" 0.1 0 0.8
|
||||
cvarfloat "s_volume" 0.1 0 0.7
|
||||
rect 99 92 256 20
|
||||
textalign ITEM_ALIGN_RIGHT
|
||||
textalignx 128
|
||||
|
@ -461,7 +461,7 @@ itemDef {
|
|||
group grpSystem
|
||||
type ITEM_TYPE_SLIDER
|
||||
text "Music Volume:"
|
||||
cvarfloat "s_musicvolume" 0.1 0 0.8
|
||||
cvarfloat "s_musicvolume" 0.1 0 0.7
|
||||
rect 99 119 256 20
|
||||
textalign ITEM_ALIGN_RIGHT
|
||||
textalignx 128
|
||||
|
|
Loading…
Reference in a new issue