uae: sound_stereo_separation
This commit is contained in:
parent
4b17feaca0
commit
9c1db0a0cc
|
@ -206,6 +206,13 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga
|
||||||
[TypeConverter(typeof(ConstrainedIntConverter))]
|
[TypeConverter(typeof(ConstrainedIntConverter))]
|
||||||
public int MouseSpeed { get; set; }
|
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()
|
public PUAESyncSettings()
|
||||||
=> SettingsUtil.SetDefaultValues(this);
|
=> SettingsUtil.SetDefaultValues(this);
|
||||||
|
|
||||||
|
|
|
@ -180,6 +180,7 @@ namespace BizHawk.Emulation.Cores.Computers.Amiga
|
||||||
}
|
}
|
||||||
|
|
||||||
AppendSetting("input.mouse_speed=" + settings.MouseSpeed);
|
AppendSetting("input.mouse_speed=" + settings.MouseSpeed);
|
||||||
|
AppendSetting("sound_stereo_separation=" + settings.StereoSeparation / 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static ControllerDefinition InitInput()
|
private static ControllerDefinition InitInput()
|
||||||
|
|
Loading…
Reference in New Issue