Skip to content

Commit

Permalink
MouseHook: update bindings.ini, minor bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
emoose committed Feb 15, 2021
1 parent 0ffeccf commit 1fea5e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions bindings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@ W = LS-Up
S = LS-Down
A = LS-Left
D = LS-Right
; TODO: A+B should be ; & # (or VK_OEM_7 & VK_OEM_1)
K = A
O = B
: = A
# = B
L = X
P = Y
; TODO: should be K
M = RS
K = RS
Q = LT
E = RT
1 = LB
Expand All @@ -35,6 +33,8 @@ LClick = RT
RClick = LT
MWheelUp = Y + RT
MWheelDown = Y
Mouse4 = Y
Mouse5 = Y + RT
Enter = Start
Tab = Back
1 = LB
Expand Down
2 changes: 1 addition & 1 deletion src/xenia/hid/winkey/winkey_input_driver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ WinKeyInputDriver::WinKeyInputDriver(xe::ui::Window* window)
}

// Not a section, must be bind
auto sep = line.find_first_of('=');
auto sep = line.find_last_of('=');
if (sep < 0) {
continue; // invalid
}
Expand Down

0 comments on commit 1fea5e5

Please sign in to comment.