diff options
author | 2022-01-03 18:20:27 -0800 | |
---|---|---|
committer | 2022-01-03 18:20:27 -0800 | |
commit | 92c5f8ae84bd90393ca06ff84138b5ff50f0edb9 (patch) | |
tree | 28b8f8ea8a64feffa2555a33df78b79d0393c173 | |
parent | b5f78b5b9e844199d5ad5cc305924138ebcc472b (diff) |
cosmicg.cpp: restore missing code, fix regression [Peter Ferrie]
fixes 5237
-rw-r--r-- | src/mame/drivers/cosmicg.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mame/drivers/cosmicg.cpp b/src/mame/drivers/cosmicg.cpp index 3f75c579c94..ea58fc33282 100644 --- a/src/mame/drivers/cosmicg.cpp +++ b/src/mame/drivers/cosmicg.cpp @@ -426,6 +426,12 @@ void cosmicg_state::init_cosmicg() rom[offs] = normal; } + + /* Patch to avoid crash - Seems like duff romcheck routine */ + /* I would expect it to be bitrot, but have two romsets */ + /* from different sources with the same problem! */ + rom[0x1e9e] = 0x04; + rom[0x1e9f] = 0xc0; } |