diff options
author | 2008-02-29 04:23:37 +0000 | |
---|---|---|
committer | 2008-02-29 04:23:37 +0000 | |
commit | 51a3a9eb016a91a3de8e8b4ed3e1ac57a1479bc2 (patch) | |
tree | e986b32355d8c0bfea351543b5724dd96dadf7ab /src | |
parent | f8cbcafd5e524cebf3afa8096a6d96dc9eca4161 (diff) |
Fixed taitoic regression
(Note to Haze: a little less crying and instead spending 2 minutes with a diff program would have been a lot more productive)
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/video/taitoic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/taitoic.c b/src/mame/video/taitoic.c index 5f358bb5526..9aa89dbe3a5 100644 --- a/src/mame/video/taitoic.c +++ b/src/mame/video/taitoic.c @@ -3749,7 +3749,7 @@ static void TC0480SCP_bg23_draw(bitmap_t *bitmap,const rectangle *cliprect,int l (TC0480SCP_tilemap[layer][TC0480SCP_dblwidth]); UINT16 *dst16,*src16; - UINT16 *tsrc; + UINT8 *tsrc; int i,y,y_index,src_y_index,row_index,row_zoom; int sx,x_index,x_step; UINT32 zoomx,zoomy; @@ -3831,7 +3831,7 @@ static void TC0480SCP_bg23_draw(bitmap_t *bitmap,const rectangle *cliprect,int l } src16 = BITMAP_ADDR16(srcbitmap, src_y_index, 0); - tsrc = BITMAP_ADDR16(flagsbitmap, src_y_index, 0); + tsrc = BITMAP_ADDR8(flagsbitmap, src_y_index, 0); dst16 = scanline; if (flags & TILEMAP_DRAW_OPAQUE) |