Skip to content

Commit

Permalink
Merge pull request #2083 from natano/unbind-hyphen
Browse files Browse the repository at this point in the history
Change the default binding for P2/back from hyphen to backslash
  • Loading branch information
Scraticus committed Dec 16, 2021
2 parents cd7da39 + 6894386 commit 21bb1db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InputMapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static const AutoMappings g_DefaultKeyMappings = AutoMappings(
AutoMappingEntry( 0, KEY_KP_C2, GAME_BUTTON_MENUDOWN, true ),
AutoMappingEntry( 0, KEY_KP_ENTER, GAME_BUTTON_START, true ),
AutoMappingEntry( 0, KEY_KP_C0, GAME_BUTTON_SELECT, true ),
AutoMappingEntry( 0, KEY_HYPHEN, GAME_BUTTON_BACK, true ), // laptop keyboards.
AutoMappingEntry( 0, KEY_BACKSLASH, GAME_BUTTON_BACK, true ), // laptop keyboards.
AutoMappingEntry( 0, KEY_F1, GAME_BUTTON_COIN, false ),
AutoMappingEntry( 0, KEY_SCRLLOCK, GAME_BUTTON_OPERATOR, false )
);
Expand Down

0 comments on commit 21bb1db

Please sign in to comment.