diff options
| author | jsorg71 <jsorg71> | 2009-08-12 07:14:20 +0000 |
|---|---|---|
| committer | jsorg71 <jsorg71> | 2009-08-12 07:14:20 +0000 |
| commit | 47f6623d8e7f56e9bde8a32f283de2f5ec68df5b (patch) | |
| tree | 90ca98977dc5dc7f881ad7c6acae6f3985822270 /rdp/rdp.c | |
| parent | 1875c807949749fa3529e54006261788b0727245 (diff) | |
| download | xrdp-proprietary-47f6623d8e7f56e9bde8a32f283de2f5ec68df5b.tar.gz xrdp-proprietary-47f6623d8e7f56e9bde8a32f283de2f5ec68df5b.zip | |
change the order of params for keydown/up to be more backward compatible
Diffstat (limited to 'rdp/rdp.c')
| -rw-r--r-- | rdp/rdp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -82,11 +82,11 @@ lib_mod_event(struct mod* mod, int msg, long param1, long param2, { case 15: rdp_rdp_send_input(mod->rdp_layer, s, 0, RDP_INPUT_SCANCODE, - param2, param1, 0); + param4, param3, 0); break; case 16: rdp_rdp_send_input(mod->rdp_layer, s, 0, RDP_INPUT_SCANCODE, - param2, param1, 0); + param4, param3, 0); break; case 17: rdp_rdp_send_input(mod->rdp_layer, s, 0, RDP_INPUT_SYNCHRONIZE, |
