https://git.reactos.org/?p=reactos.git;a=commitdiff;h=782bf0e3dc980fe57da32ea225c403d185d4b61e
commit 782bf0e3dc980fe57da32ea225c403d185d4b61e Author: Rafał Mikrut <mikrutra...@protonmail.com> AuthorDate: Thu Oct 7 20:12:53 2021 +0200 Commit: Stanislav Motylkov <x86co...@gmail.com> CommitDate: Thu Oct 7 23:08:03 2021 +0300 [TSCLIENT] Fix code F12 array index (#4006) --- modules/rosapps/applications/net/tsclient/rdesktop/uiports/nanoxwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rosapps/applications/net/tsclient/rdesktop/uiports/nanoxwin.c b/modules/rosapps/applications/net/tsclient/rdesktop/uiports/nanoxwin.c index c1fd04d8adf..4c5950f56cd 100644 --- a/modules/rosapps/applications/net/tsclient/rdesktop/uiports/nanoxwin.c +++ b/modules/rosapps/applications/net/tsclient/rdesktop/uiports/nanoxwin.c @@ -1243,7 +1243,7 @@ static void init_keys(void) g_keys[0x53].ch1 = 63508; /* delete */ g_keys[0x53].ch2 = 63493; /* delete */ g_keys[0x54].ch1 = 63525; /* f11 */ - g_keys[0x54].ch1 = 63527; /* f12 */ + g_keys[0x55].ch1 = 63527; /* f12 */ } /*****************************************************************************/