mirror of
https://github.com/holub/mame
synced 2025-04-19 15:11:37 +03:00
video/ati_mach32.cpp: Fix uninitialized variable that was causing a crash on some builds. [R. Belmont]
This commit is contained in:
parent
8e4b44ba6a
commit
df00bcfdf7
@ -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");
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user