mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 21:05:12 +01:00
This commit is contained in:
commit
b477826144
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 3.7 MiB After Width: | Height: | Size: 3.7 MiB |
Binary file not shown.
Before Width: | Height: | Size: 3.8 MiB After Width: | Height: | Size: 3.8 MiB |
@ -950,7 +950,7 @@ static void mapper_512k_w(uint32 address, uint32 data)
|
||||
static void mapper_ssf2_w(uint32 address, uint32 data)
|
||||
{
|
||||
/* only banks 1-7 are remappable, bank 0 remains unchanged */
|
||||
if (address)
|
||||
if (address & 0x0E)
|
||||
{
|
||||
mapper_512k_w(address, data);
|
||||
}
|
||||
|
@ -1861,7 +1861,7 @@ int gx_video_Update(int status)
|
||||
if (!config.render && config.vsync && (gc_pal == vdp_pal))
|
||||
{
|
||||
/* framerate has changed, reinitialize audio timings */
|
||||
audio_init(snd.sample_rate, get_framerate());
|
||||
audio_set_rate(snd.sample_rate, get_framerate());
|
||||
}
|
||||
|
||||
/* clear flag */
|
||||
|
Loading…
Reference in New Issue
Block a user