diff --git a/src/mame/drivers/tryout.c b/src/mame/drivers/tryout.c index 1b479f1a6ca..8f832f64769 100644 --- a/src/mame/drivers/tryout.c +++ b/src/mame/drivers/tryout.c @@ -7,7 +7,6 @@ TODO: - Fix the scroll properly - - Some colors problems - Fix sprite position in cocktail mode ****************************************************************/ diff --git a/src/mame/video/tryout.c b/src/mame/video/tryout.c index c583d18ea11..e6d83f91343 100644 --- a/src/mame/video/tryout.c +++ b/src/mame/video/tryout.c @@ -42,14 +42,14 @@ PALETTE_INIT( tryout ) static TILE_GET_INFO( get_fg_tile_info ) { - int code, attr; + int code, attr, color; code = videoram[tile_index]; attr = videoram[tile_index + 0x400]; - code |= ((attr & 0x03) << 8); + color = ((attr & 0x4)>>2)+6; - SET_TILE_INFO(0, code, 6, 0); + SET_TILE_INFO(0, code, color, 0); } static TILE_GET_INFO( get_bg_tile_info )