diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-09 00:03:47 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-09 00:03:47 +0000 |
commit | f227f17d1b4f21b681c94efce859b9094482b7e6 (patch) | |
tree | c08cd2a2a7cdeb51db47e6a156ecee9e1da97684 | |
parent | 88d2c950b002a3976cd5673b0214006e72cae191 (diff) |
Fix the sendkey hold time calculation (Jan Kiszka).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4703 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -982,8 +982,8 @@ static void do_sendkey(const char *string, int has_hold_time, int hold_time) kbd_put_keycode(keycode & 0x7f); } /* delayed key up events */ - qemu_mod_timer(key_timer, - qemu_get_clock(vm_clock) + ticks_per_sec * hold_time); + qemu_mod_timer(key_timer, qemu_get_clock(vm_clock) + + muldiv64(ticks_per_sec, hold_time, 1000)); } static int mouse_button_state; |