mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
fixed usage of uninitialized members in nextkbd_device (nw)
This commit is contained in:
parent
d0d4d6ff55
commit
bd0b5edfca
@ -61,6 +61,10 @@ void nextkbd_device::device_reset()
|
||||
memset(fifo, 0, sizeof(fifo));
|
||||
modifiers_state = 0;
|
||||
nmi_active = false;
|
||||
prev_mousex = 0;
|
||||
prev_mousey = 0;
|
||||
prev_mousebtn = 0;
|
||||
km_address = 0;
|
||||
poll_timer->adjust(attotime::from_hz(200), 0, attotime::from_hz(200));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user