mirror of
https://github.com/holub/mame
synced 2025-05-11 00:28:49 +03:00
removed assert from src/emu/sound/nes_apu.c (nw)
This commit is contained in:
parent
077454c8b4
commit
aa15bd2b71
@ -752,7 +752,6 @@ inline uint8 nesapu_device::apu_read(int address)
|
|||||||
/* WRITE VALUE TO TEMP REGISTRY AND QUEUE EVENT */
|
/* WRITE VALUE TO TEMP REGISTRY AND QUEUE EVENT */
|
||||||
inline void nesapu_device::apu_write(int address, uint8 value)
|
inline void nesapu_device::apu_write(int address, uint8 value)
|
||||||
{
|
{
|
||||||
assert(address >= 0 && address < ARRAY_LENGTH(m_APU.regs));
|
|
||||||
m_APU.regs[address]=value;
|
m_APU.regs[address]=value;
|
||||||
m_stream->update();
|
m_stream->update();
|
||||||
apu_regwrite(address,value);
|
apu_regwrite(address,value);
|
||||||
|
Loading…
Reference in New Issue
Block a user