frogger: fixed long standing regression (nw)

This commit is contained in:
Ivan Vangelista 2017-05-26 18:50:22 +02:00
parent 2d5bb2dc20
commit e0f709b27f

View File

@ -1054,9 +1054,9 @@ void galaxian_state::turtles_draw_background(bitmap_rgb32 &bitmap, const rectang
void galaxian_state::frogger_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
/* color split point verified on real machine */
/* hmmm, according to schematics it is at 128+8; which is right? */
background_draw_colorsplit(bitmap, cliprect, rgb_t(0,0,0x47), 128+8, 128-8);
/* according to schematics it is at 128+8; but it has been verified different on real machine.
Video proof: http://www.youtube.com/watch?v=ssr69mQf224 */
background_draw_colorsplit(bitmap, cliprect, rgb_t(0,0,0x47), 128, 128);
}
void galaxian_state::quaak_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect)