Better volume levels for AY-3-8912 MONO panning configuration
This commit is contained in:
parent
981a31d32b
commit
bd319056af
|
@ -503,7 +503,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
private static List<uint[]> PanTabs = new List<uint[]>
|
private static List<uint[]> PanTabs = new List<uint[]>
|
||||||
{
|
{
|
||||||
// MONO
|
// MONO
|
||||||
new uint[] { 100,100, 100,100, 100,100 },
|
new uint[] { 66,66, 66,66, 66,66 },
|
||||||
// ABC
|
// ABC
|
||||||
new uint[] { 100,10, 66,66, 10,100 },
|
new uint[] { 100,10, 66,66, 10,100 },
|
||||||
// ACB
|
// ACB
|
||||||
|
|
|
@ -307,7 +307,11 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
||||||
ULADevice.SyncState(ser);
|
ULADevice.SyncState(ser);
|
||||||
|
|
||||||
if (AYDevice != null)
|
if (AYDevice != null)
|
||||||
|
{
|
||||||
AYDevice.SyncState(ser);
|
AYDevice.SyncState(ser);
|
||||||
|
((AYChip)AYDevice as AYChip).PanningConfiguration = Spectrum.Settings.AYPanConfig;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
ser.Sync("tapeMediaIndex", ref tapeMediaIndex);
|
ser.Sync("tapeMediaIndex", ref tapeMediaIndex);
|
||||||
TapeMediaIndex = tapeMediaIndex;
|
TapeMediaIndex = tapeMediaIndex;
|
||||||
|
|
Loading…
Reference in New Issue