summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2013-02-10 09:55:47 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2013-02-10 09:55:47 +0000
commitb2727e8104cfc8d4aec51042965857a118ae2e38 (patch)
tree5fb4fe6d9d3d40b580073647048d2ac8f9b7b1cd
parentec2c30c77c4004248dfade5452d12be53f0c3fb6 (diff)
let's see if this makes happy non-Apple GCC... nw
-rw-r--r--src/mame/machine/snessdd1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/snessdd1.c b/src/mame/machine/snessdd1.c
index 96eaceb926e..703d0df4448 100644
--- a/src/mame/machine/snessdd1.c
+++ b/src/mame/machine/snessdd1.c
@@ -37,7 +37,7 @@ UINT8 SDD1_IM::IM_getCodeword(UINT8 *ROM, UINT32 *mmc, const UINT8 code_len)
if (codeword & 0x80)
{
- codeword |= ROM[SSD1_ADD(m_byte_ptr + 1)] >> (9 - m_bit_count);
+ codeword |= ROM[SSD1_ADD((m_byte_ptr + 1))] >> (9 - m_bit_count);
m_bit_count += code_len;
}