diff options
Diffstat (limited to 'src/mame/drivers/ngen.cpp')
-rw-r--r-- | src/mame/drivers/ngen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ngen.cpp b/src/mame/drivers/ngen.cpp index de4ee86a914..e0a18155ead 100644 --- a/src/mame/drivers/ngen.cpp +++ b/src/mame/drivers/ngen.cpp @@ -768,9 +768,9 @@ MC6845_UPDATE_ROW( ngen_state::crtc_update_row ) for(int z=0;z<9;z++) { if(BIT(m_fontram.read16(ch*16+ra),8-z)) - bitmap.pix32(y,x+z) = rgb_t(0,0xff,0); + bitmap.pix(y,x+z) = rgb_t(0,0xff,0); else - bitmap.pix32(y,x+z) = rgb_t(0,0,0); + bitmap.pix(y,x+z) = rgb_t(0,0,0); } } } |