diff options
author | 2019-07-19 16:35:20 -0400 | |
---|---|---|
committer | 2019-07-19 16:35:20 -0400 | |
commit | 9b55ced1d29bfeb7b6fe401feab44a8286fda8c6 (patch) | |
tree | c44fa92b54dbb723d0f3489004e88ef5c6db0ab8 /src/mame/drivers/gamecstl.cpp | |
parent | 802262d37c03b8531f340dc898bebe9ab394c4e4 (diff) |
Revert "Allow 16bpp gfxdecode (#5167)"
This reverts commit a5e00faf88ec05d1705b9bc4796cc6f21f2cc7a9.
Diffstat (limited to 'src/mame/drivers/gamecstl.cpp')
-rw-r--r-- | src/mame/drivers/gamecstl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/gamecstl.cpp b/src/mame/drivers/gamecstl.cpp index 0bb7ddc9671..947eaced689 100644 --- a/src/mame/drivers/gamecstl.cpp +++ b/src/mame/drivers/gamecstl.cpp @@ -138,7 +138,7 @@ void gamecstl_state::video_start() void gamecstl_state::draw_char(bitmap_ind16 &bitmap, const rectangle &cliprect, gfx_element *gfx, int ch, int att, int x, int y) { int i,j; - const uint16_t *dp; + const uint8_t *dp; int index = 0; dp = gfx->get_data(ch); |