summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tk635.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tk635.cpp')
-rw-r--r--src/mame/drivers/tk635.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tk635.cpp b/src/mame/drivers/tk635.cpp
index e57e27e870d..3b27c8907c5 100644
--- a/src/mame/drivers/tk635.cpp
+++ b/src/mame/drivers/tk635.cpp
@@ -122,10 +122,10 @@ uint32_t tk635_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap,
// 8 pixels of the character
for (int p = 0; p < 8; p++)
- bitmap.pix32(y * 16 + i, x * 9 + p) = BIT(data, 7 - p) ? rgb_t::white() : rgb_t::black();
+ bitmap.pix(y * 16 + i, x * 9 + p) = BIT(data, 7 - p) ? rgb_t::white() : rgb_t::black();
// 9th pixel empty
- bitmap.pix32(y * 16 + i, x * 9 + 8) = rgb_t::black();
+ bitmap.pix(y * 16 + i, x * 9 + 8) = rgb_t::black();
}
}
}