From 5513854b6a4b8ae8c1c1bb8ef3af6dbf9b63f67c Mon Sep 17 00:00:00 2001 From: smf- Date: Mon, 15 Aug 2016 22:18:04 +0100 Subject: [PATCH] fix for compiling with msvc, because it can't tell that all cases are handled. (nw) --- src/mame/drivers/victor9k.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/victor9k.cpp b/src/mame/drivers/victor9k.cpp index ea3f2dde0d7..7bc2708c8fd 100644 --- a/src/mame/drivers/victor9k.cpp +++ b/src/mame/drivers/victor9k.cpp @@ -124,7 +124,7 @@ MC6845_UPDATE_ROW( victor9k_state::crtc_update_row ) for (int bit = 0; bit < width; bit++) { - int pixel; + int pixel = 0; switch (rvs | undln | cursor) {