From df33165b5a60d492eaf0ebd8342b2dc650d76a7a Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 22 Mar 2025 13:00:07 +0300 Subject: [PATCH] dsda: reorder player pov because multiplayer mode is not frequent --- .../Computers/Doom/DSDA.ISettable.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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);