Skip to content

Commit

Permalink
Fix typing closing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
dail8859 committed Apr 12, 2017
1 parent 8f4b154 commit 4432426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ LRESULT CALLBACK KeyboardProc(int ncode, WPARAM wparam, LPARAM lparam) {
ch2 = ']';
}
}
else if (wparam == 0x39 || wparam == 0x3A) {
else if (wparam == 0x39 || wparam == 0x30) {
if (GetKeyState(VK_SHIFT) & KF_UP) {
ch1 = '(';
ch2 = ')';
Expand Down

0 comments on commit 4432426

Please sign in to comment.