summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2014-11-18 02:20:53 +0100
committer hap <happppp@users.noreply.github.com>2014-11-18 02:20:53 +0100
commitd4ace3a1474c6748a3f4bc5d81f2bb62d5319030 (patch)
tree1290405905ee8310ec6818255ba028c66d8bd416
parentdab9edc5e1624906a4609134da894eb901583ca5 (diff)
1 more bad byte found in stopthie, confirmed by seanriddle
-rw-r--r--src/lib/util/plaparse.c2
-rw-r--r--src/mess/drivers/stopthie.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/util/plaparse.c b/src/lib/util/plaparse.c
index 5e2e9e39ea5..f0317f25411 100644
--- a/src/lib/util/plaparse.c
+++ b/src/lib/util/plaparse.c
@@ -50,7 +50,7 @@ struct parse_info
iscrlf - is a line feed character
-------------------------------------------------*/
-static int iscrlf(char c)
+static bool iscrlf(char c)
{
return (c == 13 || c == 10);
}
diff --git a/src/mess/drivers/stopthie.c b/src/mess/drivers/stopthie.c
index ef6dccf851d..b462d2c17c3 100644
--- a/src/mess/drivers/stopthie.c
+++ b/src/mess/drivers/stopthie.c
@@ -75,8 +75,7 @@ MACHINE_CONFIG_END
ROM_START( stopthie )
ROM_REGION( 0x1000, "maincpu", 0 )
- /* Taken from patent 4341385, might have made mistakes when creating this rom */
- ROM_LOAD16_WORD( "stopthie.bin", 0x0000, 0x1000, BAD_DUMP CRC(63162ce9) SHA1(2ff88a139020c48869fcacc04b0786b27530a802) )
+ ROM_LOAD16_WORD( "stopthie.bin", 0x0000, 0x1000, CRC(03691115) SHA1(bdcd212aa50bb1c26cb2d0ee97e5cfc04841c108) )
ROM_END
/***************************************************************************