summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/taito_f2.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2019-07-20 12:31:21 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2019-07-20 12:31:21 +1000
commitd2926fa02cef5bf728eac74c9e5586aced02a80b (patch)
tree820d62305954ff68c7c8bb87c8a08d1b7ce4b2c3 /src/mame/drivers/taito_f2.cpp
parent24c462dbdb4ed2992af2f8767bf9c56979e7f1be (diff)
parent68139508715a0375e657add4197582271ef446ec (diff)
Merge remote-tracking branch 'upstream/master'
# Conflicts: # src/emu/digfx.h
Diffstat (limited to 'src/mame/drivers/taito_f2.cpp')
-rw-r--r--src/mame/drivers/taito_f2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/taito_f2.cpp b/src/mame/drivers/taito_f2.cpp
index 4bb9b1ce227..5fdd5257d23 100644
--- a/src/mame/drivers/taito_f2.cpp
+++ b/src/mame/drivers/taito_f2.cpp
@@ -5298,14 +5298,14 @@ void taitof2_state::init_finalb()
u8 *dest = srcdata;
for (int c = 0; c < gx0->elements(); c++)
{
- const u16 *c0base = gx0->get_data(c);
- const u16 *c1base = gx1->get_data(c);
+ const u8 *c0base = gx0->get_data(c);
+ const u8 *c1base = gx1->get_data(c);
// loop over height
for (int y = 0; y < gx0->height(); y++)
{
- const u16 *c0 = c0base;
- const u16 *c1 = c1base;
+ const u8 *c0 = c0base;
+ const u8 *c1 = c1base;
for (int x = 0; x < gx0->width(); x++)
{