diff options
-rw-r--r-- | src/emu/bus/intv/slot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/intv/slot.c b/src/emu/bus/intv/slot.c index df50465b1c0..30e87ea2cb9 100644 --- a/src/emu/bus/intv/slot.c +++ b/src/emu/bus/intv/slot.c @@ -470,7 +470,7 @@ void intv_cart_slot_device::get_default_card_software(astring &result) core_fread(m_file, rom, len); - if (rom[0] == 0xa8 && (rom[1] == rom[2] ^ 0xff )) + if (rom[0] == 0xa8 && (rom[1] == (rom[2] ^ 0xff))) { // it's .ROM file, so that we don't have currently any way to distinguish RAM-equipped carts } |