Disabled AY chip when memory paging is disabled (i.e. 48k mode)
This commit is contained in:
parent
d23dc0a296
commit
6d66eee459
|
@ -140,7 +140,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
|||
if (_renderSound)
|
||||
{
|
||||
BuzzerDevice.StartFrame();
|
||||
if (AYDevice != null)
|
||||
if (AYDevice != null && !PagingDisabled)
|
||||
AYDevice.StartFrame();
|
||||
}
|
||||
|
||||
|
@ -157,7 +157,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
|||
// update AY
|
||||
if (_renderSound)
|
||||
{
|
||||
if (AYDevice != null && CPU.RegPC != 1523)
|
||||
if (AYDevice != null && !PagingDisabled)
|
||||
{
|
||||
AYDevice.UpdateSound(CurrentFrameCycle);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue