summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/falco5220.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/falco5220.cpp')
-rw-r--r--src/mame/drivers/falco5220.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/falco5220.cpp b/src/mame/drivers/falco5220.cpp
index b7950bde463..a4a2660e4db 100644
--- a/src/mame/drivers/falco5220.cpp
+++ b/src/mame/drivers/falco5220.cpp
@@ -96,7 +96,7 @@ u32 falco5220_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap,
gfx = 0xff;
for (int x = 0; x < 8; x++)
- bitmap.pix32(col*16 + y, row*8 + x) = BIT(gfx, x) ? rgb_t::white() : rgb_t::black();
+ bitmap.pix(col*16 + y, row*8 + x) = BIT(gfx, x) ? rgb_t::white() : rgb_t::black();
}
}
}