diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-03-30 23:57:30 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-03-30 23:57:30 -0700 |
commit | 09ea7cd96aa384f0ab952c511920b7b741318854 (patch) | |
tree | 367d28d4b19309562f40f099eebeb07a4a70ee64 /genesis.c | |
parent | 2c86fe734c79199cbf32ea6d575c72e5f92d2111 (diff) |
Reset YM2612 whenver the Z80 is reset. Fixes issue with stuck notes in Fantastic Dizzy and Kid Chameleon
Diffstat (limited to 'genesis.c')
-rw-r--r-- | genesis.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -585,6 +585,7 @@ static m68k_context * io_write(uint32_t location, m68k_context * context, uint8_ } else { gen->z80->reset = 1; } + ym_reset(gen->ym); } } } |