mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
(MESS) fix typo (nw)
This commit is contained in:
parent
108ae5c24e
commit
2aaf40cc51
@ -279,10 +279,10 @@ WRITE8_MEMBER( itt3030_state::beep_w )
|
||||
|
||||
WRITE8_MEMBER(itt3030_state::bank_w)
|
||||
{
|
||||
int bank;
|
||||
int bank = 0;
|
||||
m_bank = data>>4;
|
||||
|
||||
if (data & 1) // bank 8
|
||||
if (m_bank & 1) // bank 8
|
||||
{
|
||||
bank = 8;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user