summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2014-10-08 18:45:00 +0000
committer Curt Coder <curtcoder@mail.com>2014-10-08 18:45:00 +0000
commitd9330a96d62bde0e662fc13e36620e264d75b4ec (patch)
tree0021e9d23fc9b0ad6529a209fed829ed1a79d757 /src
parent871ac829c2781b954572537e880ef799528dc36e (diff)
clang compile fix. (nw)
Diffstat (limited to 'src')
-rw-r--r--src/emu/bus/intv/slot.c2
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
}