diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-01-22 10:28:08 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-02-05 10:45:44 +0100 |
commit | 85b03694e1843141eaf851fb15300ae12cc76468 (patch) | |
tree | fbe6e77dc515a7b82c63028dd39096a561361282 /ui | |
parent | 47ddfab18a31b3bc0464893b1dc2ba6fcda41bf1 (diff) | |
download | qemu-85b03694e1843141eaf851fb15300ae12cc76468.zip |
sdl2: remove sdl2_reset_keys() function
No users left, dead code.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20190122092814.14919-3-kraxel@redhat.com
Diffstat (limited to 'ui')
-rw-r--r-- | ui/sdl2-input.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/ui/sdl2-input.c b/ui/sdl2-input.c index 1378b63dd9..208266c6a5 100644 --- a/ui/sdl2-input.c +++ b/ui/sdl2-input.c @@ -32,22 +32,6 @@ static uint8_t modifiers_state[SDL_NUM_SCANCODES]; -void sdl2_reset_keys(struct sdl2_console *scon) -{ - QemuConsole *con = scon ? scon->dcl.con : NULL; - int i; - - for (i = 0 ; - i < SDL_NUM_SCANCODES && i < qemu_input_map_usb_to_qcode_len ; - i++) { - if (modifiers_state[i]) { - int qcode = qemu_input_map_usb_to_qcode[i]; - qemu_input_event_send_key_qcode(con, qcode, false); - modifiers_state[i] = 0; - } - } -} - void sdl2_process_key(struct sdl2_console *scon, SDL_KeyboardEvent *ev) { |