From a327aac97d6a6d981704ca80ef44d04064cdbcfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Sat, 26 Jan 2013 20:53:06 +0000 Subject: [PATCH] (MESS) fixed Visual Studio warning about potentially uninitialized variable in mess/machine/mac.c (nw) --- src/mess/machine/mac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/machine/mac.c b/src/mess/machine/mac.c index adcf498be3b..04d8dbfdf5f 100644 --- a/src/mess/machine/mac.c +++ b/src/mess/machine/mac.c @@ -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();