From f9c84b9c78eea4d3a9b297c2cb4eb817d2c84c40 Mon Sep 17 00:00:00 2001 From: angelosa Date: Tue, 5 Jan 2016 02:49:09 +0100 Subject: [PATCH] Fixed underline, nw --- src/mame/drivers/pc9801.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/pc9801.cpp b/src/mame/drivers/pc9801.cpp index 16c34dc56ba..819d0ec178a 100644 --- a/src/mame/drivers/pc9801.cpp +++ b/src/mame/drivers/pc9801.cpp @@ -927,7 +927,7 @@ UPD7220_DRAW_TEXT_LINE_MEMBER( pc9801_state::hgdc_draw_text ) } if(reverse) { tile_data^=0xff; } - if(u_line && yi == 7) { tile_data = 0xff; } + if(u_line && yi == lr-1) { tile_data = 0xff; } if(v_line) { tile_data|=8; } /* TODO: proper blink rate for these two */