mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-30 15:00:34 +00:00
event: trivial coding style fixes
Signed-off-by: Brad Hards <bradh@frogmouth.net> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
f95857b34d
commit
97697373b4
14
input.c
14
input.c
@ -161,15 +161,15 @@ void kbd_mouse_event(int dx, int dy, int dz, int buttons_state)
|
|||||||
|
|
||||||
if (mouse_event) {
|
if (mouse_event) {
|
||||||
if (graphic_rotate) {
|
if (graphic_rotate) {
|
||||||
if (entry->qemu_put_mouse_event_absolute)
|
if (entry->qemu_put_mouse_event_absolute) {
|
||||||
width = 0x7fff;
|
width = 0x7fff;
|
||||||
else
|
} else {
|
||||||
width = graphic_width - 1;
|
width = graphic_width - 1;
|
||||||
mouse_event(mouse_event_opaque,
|
}
|
||||||
width - dy, dx, dz, buttons_state);
|
mouse_event(mouse_event_opaque, width - dy, dx, dz, buttons_state);
|
||||||
} else
|
} else {
|
||||||
mouse_event(mouse_event_opaque,
|
mouse_event(mouse_event_opaque, dx, dy, dz, buttons_state);
|
||||||
dx, dy, dz, buttons_state);
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user