mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
[x11] Rename x11 input devices to core
The x11 keyboard and mouse devices are really core input devices rather than x11 input devices in that keyboard and mouse will be present on most systems and thus not specific to the main user interface (x11, windows, etc).
This commit is contained in:
parent
7d022db702
commit
0a885fe704
1 changed files with 2 additions and 2 deletions
|
@ -100,13 +100,13 @@ static in_buttoninfo_t x11_mouse_buttons[32];
|
|||
#define infosize(x) (sizeof (x) / sizeof (x[0]))
|
||||
|
||||
static x11_device_t x11_keyboard_device = {
|
||||
"x11:keyboard",
|
||||
"core:keyboard",
|
||||
0, infosize (x11_key_buttons),
|
||||
0, x11_key_buttons,
|
||||
};
|
||||
|
||||
static x11_device_t x11_mouse_device = {
|
||||
"x11:mouse",
|
||||
"core:mouse",
|
||||
infosize (x11_mouse_axes), infosize (x11_mouse_buttons),
|
||||
x11_mouse_axes, x11_mouse_buttons,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue