summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/megadrive/rom.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2015-12-07 15:23:41 +0100
committer Olivier Galibert <galibert@pobox.com>2015-12-07 15:23:41 +0100
commit7c54872a225a0c05e1550ee333786b8ce255a69f (patch)
tree1ab19e9eabcc95bcea151fd5f58ac3d538d45321 /src/devices/bus/megadrive/rom.cpp
parent0bd06e40f54636c6cc7a836f340575e5561bfcda (diff)
clang 3.7 warning fixes (nw)
Diffstat (limited to 'src/devices/bus/megadrive/rom.cpp')
-rw-r--r--src/devices/bus/megadrive/rom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/megadrive/rom.cpp b/src/devices/bus/megadrive/rom.cpp
index 70687fa8c91..5af9f0a64a2 100644
--- a/src/devices/bus/megadrive/rom.cpp
+++ b/src/devices/bus/megadrive/rom.cpp
@@ -1000,7 +1000,7 @@ WRITE16_MEMBER(md_rom_realtec_device::write)
READ16_MEMBER(md_rom_redcl_device::read)
{
if (offset == 0x400000/2) return 0x55 << 8;
- if (offset == 0x400004/2) return -0x56 << 8;
+ if (offset == 0x400004/2) return 0xaa << 8;
// non-protection accesses
if (offset < 0x400000/2)