You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file m_menu.c for some reason the strings have been removed from the OptionsMenu[] array. The array initialization needs to be restored to this in order for the menu to display its text properly:
In the file m_menu.c for some reason the strings have been removed from the OptionsMenu[] array. The array initialization needs to be restored to this in order for the menu to display its text properly:
menuitem_t OptionsMenu[]=
{
// killough 4/6/98: move setup to be a sub-menu of OPTIONs
{1,"M_GENERL", M_General, 'g'}, // killough 10/98
{1,"M_SETUP", M_Setup, 's'}, // phares 3/21/98
{1,"M_ENDGAM", M_EndGame,'e'},
{1,"M_MESSG", M_ChangeMessages,'m'},
/* {1,"M_DETAIL", M_ChangeDetail,'g'}, unused -- killough /
{2,"M_SCRNSZ", M_SizeDisplay,'s'},
{-1,"",0},
{1,"M_MSENS", M_ChangeSensitivity,'m'},
/ {-1,"",0}, replaced with submenu -- killough */
{1,"M_SVOL", M_Sound,'s'}
};
The text was updated successfully, but these errors were encountered: