From 443242632c944732c1344b28ce881b89718b134f Mon Sep 17 00:00:00 2001 From: dail8859 Date: Wed, 12 Apr 2017 19:22:28 -0400 Subject: [PATCH] Fix typing closing parenthesis --- src/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.cpp b/src/Main.cpp index 57f6953..00824c7 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -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 = ')';