summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/nascom1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/nascom1.c')
-rw-r--r--src/mess/video/nascom1.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mess/video/nascom1.c b/src/mess/video/nascom1.c
index 1a2356d3654..89a992f6062 100644
--- a/src/mess/video/nascom1.c
+++ b/src/mess/video/nascom1.c
@@ -16,7 +16,6 @@ UINT32 nascom1_state::screen_update_nascom1(screen_device &screen, bitmap_ind16
for (sx = 0; sx < 48; sx++)
{
-
m_gfxdecode->gfx(0)->opaque(bitmap,cliprect, videoram[0x03ca + sx],
1, 0, 0, sx * 8, 0);
}
@@ -25,7 +24,6 @@ UINT32 nascom1_state::screen_update_nascom1(screen_device &screen, bitmap_ind16
{
for (sx = 0; sx < 48; sx++)
{
-
m_gfxdecode->gfx(0)->opaque(bitmap,cliprect, videoram[0x000a + (sy * 64) + sx],
1, 0, 0, sx * 8, (sy + 1) * 16);
}
@@ -40,7 +38,6 @@ UINT32 nascom1_state::screen_update_nascom2(screen_device &screen, bitmap_ind16
for (sx = 0; sx < 48; sx++)
{
-
m_gfxdecode->gfx(0)->opaque(bitmap,cliprect, videoram[0x03ca + sx],
1, 0, 0, sx * 8, 0);
}
@@ -49,7 +46,6 @@ UINT32 nascom1_state::screen_update_nascom2(screen_device &screen, bitmap_ind16
{
for (sx = 0; sx < 48; sx++)
{
-
m_gfxdecode->gfx(0)->opaque(bitmap,cliprect, videoram[0x000a + (sy * 64) + sx],
1, 0, 0, sx * 8, (sy + 1) * 14);
}