dp_doom: disable screen size up/down and save/load keybindings

This commit is contained in:
oxmox 2023-03-03 05:54:47 +01:00
parent a85d8bb821
commit 93b401420c

View file

@ -1521,17 +1521,20 @@ boolean M_Responder (event_t* ev)
return true; return true;
} }
#if 0
if (devparm && ch == KEY_F1) if (devparm && ch == KEY_F1)
{ {
G_ScreenShot (); G_ScreenShot ();
return true; return true;
} }
#endif
// F-Keys // F-Keys
if (!menuactive) if (!menuactive)
switch(ch) switch(ch)
{ {
#if 0
case KEY_MINUS: // Screen size down case KEY_MINUS: // Screen size down
if (automapactive || chat_on) if (automapactive || chat_on)
return false; return false;
@ -1545,6 +1548,7 @@ boolean M_Responder (event_t* ev)
M_SizeDisplay(1); M_SizeDisplay(1);
S_StartSound(NULL,sfx_stnmov); S_StartSound(NULL,sfx_stnmov);
return true; return true;
#endif
case KEY_F1: // Help key case KEY_F1: // Help key
M_StartControlPanel (); M_StartControlPanel ();
@ -1558,6 +1562,7 @@ boolean M_Responder (event_t* ev)
S_StartSound(NULL,sfx_swtchn); S_StartSound(NULL,sfx_swtchn);
return true; return true;
#if 0
case KEY_F2: // Save case KEY_F2: // Save
M_StartControlPanel(); M_StartControlPanel();
S_StartSound(NULL,sfx_swtchn); S_StartSound(NULL,sfx_swtchn);
@ -1569,6 +1574,7 @@ boolean M_Responder (event_t* ev)
S_StartSound(NULL,sfx_swtchn); S_StartSound(NULL,sfx_swtchn);
M_LoadGame(0); M_LoadGame(0);
return true; return true;
#endif
case KEY_F4: // Sound Volume case KEY_F4: // Sound Volume
M_StartControlPanel (); M_StartControlPanel ();
@ -1907,4 +1913,3 @@ void M_Init (void)
} }
} }