From a7545070f988d85ec7dd9bb7914b9412d1c3117d Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Sat, 21 Feb 2015 09:48:38 +0100 Subject: [PATCH] tehkanwc.c: oops, forgot to save (nw) --- src/mame/includes/tehkanwc.h | 2 +- src/mame/video/tehkanwc.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mame/includes/tehkanwc.h b/src/mame/includes/tehkanwc.h index 5a989d39aeb..46c74a19a89 100644 --- a/src/mame/includes/tehkanwc.h +++ b/src/mame/includes/tehkanwc.h @@ -74,7 +74,7 @@ public: virtual void video_start(); UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - void draw_led(bitmap_ind16 &bitmap, const rectangle &cliprect, UINT8 led,int player); + void gridiron_draw_led(bitmap_ind16 &bitmap, const rectangle &cliprect, UINT8 led,int player); void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect); protected: diff --git a/src/mame/video/tehkanwc.c b/src/mame/video/tehkanwc.c index 2b1467b1757..199c402798d 100644 --- a/src/mame/video/tehkanwc.c +++ b/src/mame/video/tehkanwc.c @@ -117,7 +117,7 @@ void tehkanwc_state::video_start() bit 7 = enable (0 = display off) */ -void tehkanwc_state::draw_led(bitmap_ind16 &bitmap, const rectangle &cliprect, UINT8 led,int player) +void tehkanwc_state::gridiron_draw_led(bitmap_ind16 &bitmap, const rectangle &cliprect, UINT8 led,int player) { if (led&0x80) output_set_digit_value(player, led&0x7f); @@ -161,7 +161,7 @@ UINT32 tehkanwc_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap m_fg_tilemap->draw(screen, bitmap, cliprect, 0, 0); draw_sprites(bitmap, cliprect); m_fg_tilemap->draw(screen, bitmap, cliprect, 1, 0); - draw_led(bitmap, cliprect, m_led0, 0); - draw_led(bitmap, cliprect, m_led1, 1); + gridiron_draw_led(bitmap, cliprect, m_led0, 0); + gridiron_draw_led(bitmap, cliprect, m_led1, 1); return 0; }