Skip to content

Commit

Permalink
Fix Missing sfx for Super Bubble Bobble (Sun Mixing)
Browse files Browse the repository at this point in the history
With thanks to dink
  • Loading branch information
arcadez2003 authored Oct 26, 2024
1 parent b96ccd4 commit aaa87bd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/drivers/genesis.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,6 +749,12 @@ WRITE8_HANDLER ( genesis_z80_w )
/* VDP */
if ((offset >= 0x7f00) && (offset <= 0x7fff))
{
offset &= 0x1f;

if ( (offset >= 0x10) && (offset <=0x17) )
{
SN76496_0_w(0, data & 0xff);
}

}
}
Expand Down

0 comments on commit aaa87bd

Please sign in to comment.