diff options
author | 2018-02-26 09:03:33 +0700 | |
---|---|---|
committer | 2018-02-26 14:25:48 +1100 | |
commit | fd38b3a52015803a0780cf6f889dfefbb2bc0cd4 (patch) | |
tree | 3fd247c0858059c83ce27da9f0ff6ba6d6211b3a | |
parent | 7f6f2a03ffe8d4dd682d1966266334fa93922171 (diff) |
interpro: fix rom checksum
Tafoid reported an incorrect rom checksum. This corrects it, hoping it can be slipped in at the last minute for 0.195.
-rw-r--r-- | src/devices/bus/interpro/sr/gt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/interpro/sr/gt.cpp b/src/devices/bus/interpro/sr/gt.cpp index b82f0894ced..8c05bef63d0 100644 --- a/src/devices/bus/interpro/sr/gt.cpp +++ b/src/devices/bus/interpro/sr/gt.cpp @@ -191,7 +191,7 @@ ROM_END ROM_START(mpcb081) ROM_REGION(0x80, "idprom", 0) - ROM_LOAD32_BYTE("mpcb081b.bin", 0x0, 0x20, CRC(90291129) SHA1(cc6debd0307280ed73dbf5b555aa7448c2bcb7ad)) + ROM_LOAD32_BYTE("mpcb081b.bin", 0x0, 0x20, CRC(79cec897) SHA1(ccda82a61c435800b7894a256deea22ea5dc4c87)) ROM_END // FIXME: can't account for this delta yet |