Skip to content

Commit

Permalink
Fixed: Changing control bindings for inventory prev/next and view siz…
Browse files Browse the repository at this point in the history
…e -/+ via the controls menu did not apply the "repeat" qualifier to the new bindings.
  • Loading branch information
danij committed Aug 30, 2009
1 parent c474380 commit d7cb767
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doomsday/plugins/common/src/m_ctrl.c
Expand Up @@ -219,8 +219,8 @@ static controlconfig_t controlConfig[] =
{ NULL },

{ "inventory" },
{ "move left", 0, 0, "impulse previtem" },
{ "move right", 0, 0, "impulse nextitem" },
{ "move left", 0, 0, "impulse previtem", CCF_REPEAT },
{ "move right", 0, 0, "impulse nextitem", CCF_REPEAT },
{ "use item", 0, 0, "impulse useitem" },
{ "panic!", 0, 0, "impulse panic" },
#endif
Expand Down Expand Up @@ -307,8 +307,8 @@ static controlconfig_t controlConfig[] =
{ "hud" },
{ "show hud", 0, 0, "impulse showhud" },
{ "show score", 0, 0, "impulse showscore", CCF_REPEAT },
{ "smaller view", 0, 0, "viewsize -" },
{ "larger view", 0, 0, "viewsize +" },
{ "smaller view", 0, 0, "viewsize -", CCF_REPEAT },
{ "larger view", 0, 0, "viewsize +", CCF_REPEAT },

{ "message refresh", 0, 0, "impulse msgrefresh" },

Expand Down

0 comments on commit d7cb767

Please sign in to comment.