Skip to content

Commit

Permalink
Added a menu entry for binding the screenshot command
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jun 7, 2004
1 parent f0b9546 commit cca33e4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doomsday/Src/jHexen/Mn_menu.c
Expand Up @@ -240,6 +240,7 @@ static Control_t controls[] = {

// Misc.
"pause", 0, DDKEY_PAUSE, 0, 0,
"screenshot", 0, 0, 0, 0,
"", 0, 0, 0, 0
};

Expand Down Expand Up @@ -594,13 +595,14 @@ static MenuItem_t ControlsItems[] = {
{ITT_EMPTY, NULL, NULL, 0, MENU_NONE},
{ITT_EMPTY, "MISCELLANEOUS", NULL, 0, MENU_NONE},
{ITT_EFUNC, "STOP DEMO :", SCControlConfig, A_STOPDEMO, MENU_NONE},
{ITT_EFUNC, "PAUSE :", SCControlConfig, 58, MENU_NONE}
{ITT_EFUNC, "PAUSE :", SCControlConfig, 58, MENU_NONE},
{ITT_EFUNC, "SCREENSHOT :", SCControlConfig, 59, MENU_NONE}
};

static Menu_t ControlsMenu = {
32, 26,
DrawControlsMenu,
71, ControlsItems,
72, ControlsItems,
1,
MENU_OPTIONS,
MN_DrTextA_CS, 9,
Expand Down

0 comments on commit cca33e4

Please sign in to comment.