uae: sound_stereo_separation

This commit is contained in:
feos 2024-06-12 13:38:59 +03:00
parent 4b17feaca0
commit 9c1db0a0cc
2 changed files with 8 additions and 0 deletions

View File

@ -206,6 +206,13 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga
[TypeConverter(typeof(ConstrainedIntConverter))]
public int MouseSpeed { get; set; }
[DisplayName("Stereo separation")]
[Description("Stereo separation in percents. 100% is full separation, 0% is mono mode.")]
[Range(0, 100)]
[DefaultValue(70)]
[TypeConverter(typeof(ConstrainedIntConverter))]
public int StereoSeparation { get; set; }
public PUAESyncSettings()
=> SettingsUtil.SetDefaultValues(this);

View File

@ -180,6 +180,7 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga
}
AppendSetting("input.mouse_speed=" + settings.MouseSpeed);
AppendSetting("sound_stereo_separation=" + settings.StereoSeparation / 10);
}
private static ControllerDefinition InitInput()