mirror of
https://github.com/holub/mame
synced 2025-06-02 19:06:43 +03:00
Removing unnecessary typecast (nw)
This commit is contained in:
parent
969074c41e
commit
4ba1a9b558
@ -791,7 +791,7 @@ WRITE8_MEMBER(gunpey_state::gunpey_output_w)
|
||||
//bit 0 is coin counter
|
||||
// popmessage("%02x",data);
|
||||
|
||||
downcast<okim6295_device *>(m_oki)->set_bank_base(((data & 0x70)>>4) * 0x40000);
|
||||
m_oki->set_bank_base(((data & 0x70)>>4) * 0x40000);
|
||||
}
|
||||
|
||||
WRITE16_MEMBER(gunpey_state::gunpey_vram_bank_w)
|
||||
|
Loading…
Reference in New Issue
Block a user