diff options
Diffstat (limited to 'apps/plugins/doom/m_misc.c')
| -rw-r--r-- | apps/plugins/doom/m_misc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/doom/m_misc.c b/apps/plugins/doom/m_misc.c index 75cef87..1e4b75d 100644 --- a/apps/plugins/doom/m_misc.c +++ b/apps/plugins/doom/m_misc.c @@ -291,7 +291,7 @@ default_t defaults[] = {"pitched_sounds",{&pitched_sounds, NULL},{0, NULL},0,1, // killough 2/21/98 def_bool,ss_none, 0, 0}, // enables variable pitch in sound effects (from id's original code) // {"samplerate",{&snd_samplerate, NULL},{22050, NULL},11025,48000, def_int,ss_none, 0, 0}, - {"nosfxparm",{(void *)&nosfxparm, NULL},{0, NULL},0,1, def_bool,ss_none, 0, 0}, + {"enable_sound",{(void *)&enable_sound, NULL},{0, NULL},0,1, def_bool,ss_none, 0, 0}, {"sfx_volume",{&snd_SfxVolume, NULL},{8, NULL},0,15, def_int,ss_none, 0, 0}, {"music_volume",{&snd_MusicVolume, NULL},{8, NULL},0,15, def_int,ss_none, 0, 0}, {"mus_pause_opt",{&mus_pause_opt, NULL},{2, NULL},0,2, // CPhipps - music pausing @@ -307,6 +307,10 @@ default_t defaults[] = def_int,ss_none, 0, 0}, {"screen_height",{&desired_screenheight, NULL},{200, NULL},200,1200, def_int,ss_none, 0, 0},*/ +#if(LCD_HEIGHT>LCD_WIDTH) + {"rotate_screen",{(void *)&rotate_screen, NULL},{0, NULL},0,1, + def_bool,ss_none, 0, 0}, /* kwk - rotate the screen 90 degrees */ +#endif {"fake_contrast",{&fake_contrast, NULL},{1, NULL},0,1, def_bool,ss_none, 0, 0}, /* cph - allow crappy fake contrast to be disabled */ // {"use_fullscreen",{&use_fullscreen, NULL},{1, NULL},0,1, /* proff 21/05/2000 */ |