video/ati_mach32.cpp: Fix uninitialized variable that was causing a crash on some builds. [R. Belmont]

This commit is contained in:
arbee 2023-06-19 13:13:15 -04:00
parent 8e4b44ba6a
commit df00bcfdf7

View File

@ -47,7 +47,7 @@ mach32_device::mach32_device(const machine_config &mconfig, const char *tag, dev
}
mach32_device::mach32_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
: ati_vga_device(mconfig, type, tag, owner, clock), m_8514a(*this,"8514a")
: ati_vga_device(mconfig, type, tag, owner, clock), m_8514a(*this,"8514a"), m_cursor_enable(false)
{
}
@ -116,10 +116,10 @@ void mach32_8514a_device::device_reset()
}
void mach32_8514a_device::mach32_mem_boundary_w(uint16_t data)
{
{
m_membounds = data;
if(data & 0x10)
LOG("ATI: Unimplemented memory boundary activated.\n");
LOG("ATI: Unimplemented memory boundary activated.\n");
}