diff options
| author | 2014-09-02 06:48:44 +0000 | |
|---|---|---|
| committer | 2014-09-02 06:48:44 +0000 | |
| commit | 297b45de1ede8aaafdc60359e0e0a698ea9bab2b (patch) | |
| tree | a16f0bebe2029b138dc4d8737b685c218d6a5110 /src/mess/drivers/atari400.c | |
| parent | e1db142336b68849322037a8aede156c89615cee (diff) | |
Compile Fix (nw)
Diffstat (limited to 'src/mess/drivers/atari400.c')
| -rw-r--r-- | src/mess/drivers/atari400.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/atari400.c b/src/mess/drivers/atari400.c index dd311c6bc34..ecfbb20b661 100644 --- a/src/mess/drivers/atari400.c +++ b/src/mess/drivers/atari400.c @@ -1766,7 +1766,7 @@ WRITE8_MEMBER(a400_state::disable_cart) m_cartslot->write_d5xx(space, offset, data); break; case A800_OSSM091: - if (offset & 0x9 == 0x08) + if ((offset & 0x9) == 0x08) setup_ram(2, m_ram->size()); else { |
