diff --git a/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.ISettable.cs b/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.ISettable.cs index 3d4c450968..9f0344775c 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.ISettable.cs @@ -147,6 +147,11 @@ namespace BizHawk.Emulation.Cores.Computers.Doom [TypeConverter(typeof(ConstrainedIntConverter))] public int DisplayPlayer { get; set; } + [DisplayName("Report Revealed Secrets")] + [Description("Shows an on-screen notification when revealing a secret.")] + [DefaultValue(false)] + public bool ReportSecrets { get; set; } + [DisplayName("HUD Mode")] [Description("Sets heads-up display mode.")] [DefaultValue(HudMode.Vanilla)] diff --git a/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.cs b/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.cs index 69d2ed4686..ca573b06fa 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.cs @@ -99,6 +99,7 @@ namespace BizHawk.Emulation.Cores.Computers.Doom + $"map_totals {(_settings.MapTotals ? 1 : 0)}\n" + $"map_time {(_settings.MapTime ? 1 : 0)}\n" + $"map_coordinates {(_settings.MapCoordinates ? 1 : 0)}\n" + + $"hudadd_secretarea {(_settings.ReportSecrets ? 1 : 0)}\n" + "render_stretchsky 0\n" + "render_doom_lightmaps 1\n" + "render_aspect 3\n" // 4:3, controls FOV on higher resolutions (see SetRatio())