mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
(MESS) fixed Visual Studio warning about potentially uninitialized variable in mess/machine/mac.c (nw)
This commit is contained in:
parent
52a1fa0005
commit
a327aac97d
@ -559,7 +559,7 @@ void mac_state::set_memory_overlay(int overlay)
|
||||
static int scan_keyboard(running_machine &machine)
|
||||
{
|
||||
int i, j;
|
||||
int keybuf;
|
||||
int keybuf = 0;
|
||||
int keycode;
|
||||
mac_state *mac = machine.driver_data<mac_state>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user