mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
fixed usage of uninitialized member in nes_waixing_fs304_device (nw)
This commit is contained in:
parent
3ab5531414
commit
269fd6c2a4
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ void nes_waixing_fs304_device::pcb_reset()
|
||||||
prg32(0);
|
prg32(0);
|
||||||
chr8(0, m_chr_source);
|
chr8(0, m_chr_source);
|
||||||
|
|
||||||
m_reg[0] = m_reg[1] = 0;
|
memset(m_reg, 0x00, sizeof(m_reg));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue