summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/wangpc_lvc.c
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2013-01-14 22:02:06 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2013-01-14 22:02:06 +0000
commit34372f03c7fa183b6e41c0e03e898a7f9cd3d52f (patch)
treed37eedca354db19030980fde1cbb6107bcb0b4e4 /src/mess/machine/wangpc_lvc.c
parent548d5722e4661062e9d45778c7d0a507af6127cf (diff)
Added a preliminary boolean flag to MC6845 interface structure: "show border area". If true, it will show the whole video area including border + blanking areas. [Angelo Salese]
Bulk replaced const mc6845_interface -> MC6845_INTERFACE, nw (MESS) SMC-777: enabled to show the border area in MC6845 interface, changed various video related function accordingly [Angelo Salese]
Diffstat (limited to 'src/mess/machine/wangpc_lvc.c')
-rw-r--r--src/mess/machine/wangpc_lvc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/machine/wangpc_lvc.c b/src/mess/machine/wangpc_lvc.c
index 7eb4cbd1f60..5943050a6ed 100644
--- a/src/mess/machine/wangpc_lvc.c
+++ b/src/mess/machine/wangpc_lvc.c
@@ -117,9 +117,10 @@ WRITE_LINE_MEMBER( wangpc_lvc_device::vsync_w )
}
}
-static const mc6845_interface crtc_intf =
+static MC6845_INTERFACE( crtc_intf )
{
SCREEN_TAG,
+ false,
8,
NULL,
wangpc_lvc_update_row,