Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/NeutrinoRDP.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2014-07-17 08:12:58 +0400
committerJay Sorg <jay.sorg@gmail.com>2014-07-17 08:12:58 +0400
commitc221e624dae290b935f0a84fdd7173ffbe5c570c (patch)
treeccdd94734e52f4a9153972079a539f71f566daa4
parentb013ab51c8860e763a9f0a14201679b4c2eff54e (diff)
fix for keypad divide
-rw-r--r--include/freerdp/kbd/vkcodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/freerdp/kbd/vkcodes.h b/include/freerdp/kbd/vkcodes.h
index f2f87d1..106cd0e 100644
--- a/include/freerdp/kbd/vkcodes.h
+++ b/include/freerdp/kbd/vkcodes.h
@@ -434,7 +434,7 @@ static const virtualKey virtualKeyboard[256 + 2] =
{ 0x00, 0, "VK_SEPARATOR" , NULL },
{ 0x4A, 0, "VK_SUBTRACT" , "KPSU" },
{ 0x53, 0, "VK_DECIMAL" , "KPDL" },
- { 0x35, 0, "VK_DIVIDE" , "KPDV" },
+ { 0x35, 1, "VK_DIVIDE" , "KPDV" },
{ 0x3B, 0, "VK_F1" , "FK01" },
{ 0x3C, 0, "VK_F2" , "FK02" },
{ 0x3D, 0, "VK_F3" , "FK03" },