summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author briantro <briantro@users.noreply.github.com>2017-10-30 21:33:53 -0500
committer briantro <briantro@users.noreply.github.com>2017-10-30 21:33:53 -0500
commitfd7a101c23e498d7941878d435bab83f2fef0bc0 (patch)
treea06dd93c5b1aeed165bc8018ec3a0f6179635893
parent668c993ec84d66f48e6f9f7159103cdbaa6d2cb9 (diff)
gei.cpp: Restore accidental overwrite (nw)
-rw-r--r--src/mame/drivers/gei.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/gei.cpp b/src/mame/drivers/gei.cpp
index 2a275aff66e..7abb0a6ec2d 100644
--- a/src/mame/drivers/gei.cpp
+++ b/src/mame/drivers/gei.cpp
@@ -406,7 +406,7 @@ WRITE8_MEMBER(gei_state::signature_w)
if (data == 0) m_signature_pos = 0;
else
{
- static const uint8_t signature[8] = { 0x4d, 0x3c, 0x88, 0x4e, 0x24, 0x8d, 0x1e, 0x00 }; // bytes 0x03 through 0x0c of each question ROM - to prevent ROM swaps
+ static const uint8_t signature[8] = { 0xff, 0x01, 0xfd, 0x05, 0xf5, 0x15, 0xd5, 0x55 }; // bytes 0x03 through 0x0c of each question ROM - to prevent ROM swaps
m_signature_answer = signature[m_signature_pos++];