diff --git a/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.ISettable.cs b/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.ISettable.cs index 9f0344775c..74632bbcd1 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.ISettable.cs @@ -138,14 +138,6 @@ namespace BizHawk.Emulation.Cores.Computers.Doom [DefaultValue(0)] [TypeConverter(typeof(ConstrainedIntConverter))] public int Gamma { get; set; } - - [JsonIgnore] - [DisplayName("Player Point of View")] - [Description("Which of the players' point of view to use during rendering")] - [Range(1, 4)] - [DefaultValue(1)] - [TypeConverter(typeof(ConstrainedIntConverter))] - public int DisplayPlayer { get; set; } [DisplayName("Report Revealed Secrets")] [Description("Shows an on-screen notification when revealing a secret.")] @@ -177,6 +169,14 @@ namespace BizHawk.Emulation.Cores.Computers.Doom [DefaultValue(true)] public bool MapCoordinates { get; set; } + [JsonIgnore] + [DisplayName("Player Point of View")] + [Description("Which of the players' point of view to use during rendering")] + [Range(1, 4)] + [DefaultValue(1)] + [TypeConverter(typeof(ConstrainedIntConverter))] + public int DisplayPlayer { get; set; } + public DoomSettings() => SettingsUtil.SetDefaultValues(this);