diff options
author | 2016-08-15 22:18:04 +0100 | |
---|---|---|
committer | 2016-08-15 22:18:34 +0100 | |
commit | 5513854b6a4b8ae8c1c1bb8ef3af6dbf9b63f67c (patch) | |
tree | 6b295cf1fb13da2e201758a153f26e4359bea6fb /src | |
parent | 82c408f54c2c81b5af956a34c1320c7b0dfa04e9 (diff) |
fix for compiling with msvc, because it can't tell that all cases are handled. (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/drivers/victor9k.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |