From 1da112a853471ab9a90ae1b5aa929ba2481fab40 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Wed, 22 Jan 2014 02:16:10 +0000 Subject: [PATCH] (MESS) pc_vga: default DAC mask to 0xff, indiana now shows text [Carl] --- src/emu/video/pc_vga.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/emu/video/pc_vga.c b/src/emu/video/pc_vga.c index 92b3030265e..5fdeec427fb 100644 --- a/src/emu/video/pc_vga.c +++ b/src/emu/video/pc_vga.c @@ -106,7 +106,7 @@ enum ***************************************************************************/ #define LOG_ACCESSES 0 -#define LOG_REGISTERS 0 +#define LOG_REGISTERS 1 #define LOG_8514 1 @@ -1990,6 +1990,8 @@ void vga_device::device_reset() /* TODO: real defaults */ vga.crtc.line_compare = 0x3ff; + /* indiana.c boot PROM doesn't set this and assumes it's 0xff */ + vga.dac.mask = 0xff; } READ8_MEMBER(vga_device::mem_r)