From 9d81e4a949948a7752fd38f69f77abe8eb097ed9 Mon Sep 17 00:00:00 2001 From: Claudio Valerio Date: Mon, 11 Jun 2012 09:55:06 +0200 Subject: [PATCH] fixed 0 key issue on windows --- src/frameworks/UBPlatformUtils_win.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frameworks/UBPlatformUtils_win.cpp b/src/frameworks/UBPlatformUtils_win.cpp index dedc5183..ce9e6e4c 100644 --- a/src/frameworks/UBPlatformUtils_win.cpp +++ b/src/frameworks/UBPlatformUtils_win.cpp @@ -247,7 +247,7 @@ KEYBT FRENCH_LOCALE[] = { /* ? 7 */ KEYBTDECL(0xe8, 0x37, true), /* _ 8 */ KEYBTDECL(0x5f, 0x38, true), /* ? 9 */ KEYBTDECL(0xe7, 0x39, true), - /* ? 0 */ KEYBTDECL(0xe0, 0x29, true), + /* ? 0 */ KEYBTDECL(0xe0, 0x30, true), /* ) ? */ KEYBTDECL(0x29, 0xb0, true), /* = + */ KEYBTDECL(0x3d, 0x2b, true),