From d9330a96d62bde0e662fc13e36620e264d75b4ec Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Wed, 8 Oct 2014 18:45:00 +0000 Subject: [PATCH] clang compile fix. (nw) --- src/emu/bus/intv/slot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }