mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-09-23 03:52:12 -04:00
Revise additional CVAR descriptions (#1706)
This commit is contained in:
parent
9a88954c8e
commit
f673802db6
@ -2748,7 +2748,7 @@ void D_BindMiscVariables(void)
|
||||
{
|
||||
BIND_NUM_GENERAL(show_endoom, 0, 0, 2,
|
||||
"Show ENDOOM screen (0 = Off; 1 = On; 2 = PWADs only)");
|
||||
BIND_BOOL_GENERAL(demobar, false, "1 to enable demo progress bar");
|
||||
BIND_BOOL_GENERAL(demobar, false, "Show demo progress bar");
|
||||
BIND_NUM_GENERAL(screen_melt, wipe_Melt, wipe_None, wipe_Fizzle,
|
||||
"Screen wipe effect (0 = None; 1 = Melt; 2 = Crossfade; 3 = Fizzlefade)");
|
||||
BIND_BOOL_GENERAL(palette_changes, true, "Palette changes when taking damage or picking up items");
|
||||
|
@ -2182,7 +2182,7 @@ void HU_BindHUDVariables(void)
|
||||
M_BindNum("hud_level_time", &hud_level_time, NULL,
|
||||
HUD_WIDGET_OFF, HUD_WIDGET_OFF, HUD_WIDGET_ALWAYS,
|
||||
ss_stat, wad_no,
|
||||
"Show level time widget (1 = On automap, 2 = On HUD, 3 = Always)");
|
||||
"Show level time widget (1 = On automap; 2 = On HUD; 3 = Always)");
|
||||
M_BindNum("hud_player_coords", &hud_player_coords, NULL,
|
||||
HUD_WIDGET_AUTOMAP, HUD_WIDGET_OFF, HUD_WIDGET_ALWAYS,
|
||||
ss_stat, wad_no,
|
||||
@ -2208,7 +2208,7 @@ void HU_BindHUDVariables(void)
|
||||
M_BindNum("hud_widget_font", &hud_widget_font, NULL,
|
||||
HUD_WIDGET_OFF, HUD_WIDGET_OFF, HUD_WIDGET_ALWAYS,
|
||||
ss_stat, wad_no,
|
||||
"Use standard Doom font for widgets (1 = On automap, 2 = On HUD, 3 "
|
||||
"Use standard Doom font for widgets (1 = On automap; 2 = On HUD; 3 "
|
||||
"= Always)");
|
||||
M_BindBool("hud_widget_layout", &hud_widget_layout, NULL,
|
||||
false, ss_stat, wad_no, "Widget layout (0 = Horizontal; 1 = Vertical)");
|
||||
|
@ -1484,13 +1484,13 @@ static const char **I_MID_DeviceList(void)
|
||||
static void I_MID_BindVariables(void)
|
||||
{
|
||||
BIND_NUM(midi_complevel, COMP_STANDARD, 0, COMP_NUM - 1,
|
||||
"Native MIDI compatibility level (0 = Vanilla, 1 = Standard, 2 = Full)");
|
||||
"Native MIDI compatibility level (0 = Vanilla; 1 = Standard; 2 = Full)");
|
||||
BIND_NUM(midi_reset_type, RESET_TYPE_GM, 0, RESET_NUM - 1,
|
||||
"Reset type for native MIDI (0 = No SysEx, 1 = GM, 2 = GS, 3 = XG)");
|
||||
"Reset type for native MIDI (0 = No SysEx; 1 = GM; 2 = GS; 3 = XG)");
|
||||
BIND_NUM(midi_reset_delay, -1, -1, 2000,
|
||||
"Delay after reset for native MIDI (-1 = Auto, 0 = None, 1-2000 = Milliseconds)");
|
||||
"Delay after reset for native MIDI (-1 = Auto; 0 = None; 1-2000 = Milliseconds)");
|
||||
BIND_BOOL(midi_ctf, true,
|
||||
"1 to fix invalid instruments by emulating SC-55 capital tone fallback");
|
||||
"Fix invalid instruments by emulating SC-55 capital tone fallback");
|
||||
}
|
||||
|
||||
music_module_t music_mid_module =
|
||||
|
@ -461,14 +461,14 @@ static void GetAttribs(ALCint **attribs)
|
||||
void I_OAL_BindSoundVariables(void)
|
||||
{
|
||||
BIND_BOOL_GENERAL(snd_hrtf, false,
|
||||
"[OpenAL 3D] Headphones mode (0 = No, 1 = Yes)");
|
||||
"[OpenAL 3D] Headphones mode (0 = No; 1 = Yes)");
|
||||
BIND_NUM_GENERAL(snd_resampler, 1, 0, UL,
|
||||
"Sound resampler (0 = Nearest, 1 = Linear, ...)");
|
||||
"Sound resampler (0 = Nearest; 1 = Linear; ...)");
|
||||
BIND_NUM(snd_absorption, 0, 0, 10,
|
||||
"[OpenAL 3D] Air absorption effect (0 = Off, 10 = Max)");
|
||||
"[OpenAL 3D] Air absorption effect (0 = Off; 10 = Max)");
|
||||
BIND_NUM(snd_doppler, 0, 0, 10,
|
||||
"[OpenAL 3D] Doppler effect (0 = Off, 10 = Max)");
|
||||
BIND_BOOL(snd_limiter, false, "1 to enable sound output limiter");
|
||||
"[OpenAL 3D] Doppler effect (0 = Off; 10 = Max)");
|
||||
BIND_BOOL(snd_limiter, false, "Use sound output limiter");
|
||||
}
|
||||
|
||||
boolean I_OAL_InitSound(int snd_module)
|
||||
|
Loading…
x
Reference in New Issue
Block a user