cardline.c: fix uninitialised variable (nw)

This commit is contained in:
Peter Ferrie 2015-04-23 14:29:00 -07:00
parent 0894a05722
commit 5dafd0924b

View File

@ -95,8 +95,8 @@ MC6845_UPDATE_ROW( cardline_state::crtc_update_row )
int gfx_ofs;
const rgb_t *palette = m_palette->palette()->entry_list_raw();
if(m_video&1)
gfx_ofs = 0;
gfx_ofs = 0;
if(m_video&2)
gfx_ofs = 0x1000;