This commit is contained in:
twinaphex 2014-10-16 18:52:45 +02:00
commit b477826144
5 changed files with 2 additions and 2 deletions

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

View File

@ -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);
}

View File

@ -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 */