From 65912bd4f0763c96975ee855c9d9750638f0885e Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Tue, 13 May 2014 12:25:27 +0000 Subject: [PATCH] debug build fix compile (nw) --- src/emu/video/voodoo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emu/video/voodoo.c b/src/emu/video/voodoo.c index 46bc0a579c8..b7c052e0af8 100644 --- a/src/emu/video/voodoo.c +++ b/src/emu/video/voodoo.c @@ -4867,9 +4867,9 @@ void voodoo_device::common_start_voodoo(UINT8 type) int val; /* validate configuration */ - assert(config->screen != NULL); - assert(config->cputag != NULL); - assert(config->fbmem > 0); + assert(m_screen != NULL); + assert(m_cputag != NULL); + assert(m_fbmem > 0); /* store a pointer back to the device */ v->device = this;