Big net::msg conversion
This commit is contained in:
+2
-2
@@ -1061,7 +1061,7 @@ void M_AdjustSliders(int dir) {
|
||||
convar::set_value("bgmvolume", f);
|
||||
break;
|
||||
case OPT_MUSICEXT: // enable external music vs cdaudio
|
||||
convar::set("bgm_extmusic", music::bgm_extmusic.value ? "0" : "1");
|
||||
convar::set("bgm_extmusic", music::extmusic.value ? "0" : "1");
|
||||
break;
|
||||
case OPT_SNDVOL: // sfx volume
|
||||
f = sfxvolume.value + dir * 0.1;
|
||||
@@ -1207,7 +1207,7 @@ void M_Options_Draw(void) {
|
||||
|
||||
// OPT_MUSICEXT:
|
||||
M_Print(16, 32 + 8 * OPT_MUSICEXT, " External Music");
|
||||
M_DrawCheckbox(220, 32 + 8 * OPT_MUSICEXT, music::bgm_extmusic.value);
|
||||
M_DrawCheckbox(220, 32 + 8 * OPT_MUSICEXT, music::extmusic.value);
|
||||
|
||||
// OPT_ALWAYRUN:
|
||||
M_Print(16, 32 + 8 * OPT_ALWAYRUN, " Always Run");
|
||||
|
||||
Reference in New Issue
Block a user