fix for compiling with msvc, because it can't tell that all cases are handled. (nw)

This commit is contained in:
smf- 2016-08-15 22:18:04 +01:00
parent 82c408f54c
commit 5513854b6a

View File

@ -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)
{