tehkanwc.c: oops, forgot to save (nw)

This commit is contained in:
Ivan Vangelista 2015-02-21 09:48:38 +01:00
parent 7ed9885050
commit a7545070f9
2 changed files with 4 additions and 4 deletions

View File

@ -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:

View File

@ -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;
}