dsda: secret report option

disabled to be closer to vanilla on fresh boot, like most other modern features
This commit is contained in:
feos 2025-03-22 12:56:46 +03:00
parent f9a3890ac1
commit ac81c393e1
2 changed files with 6 additions and 0 deletions

View File

@ -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)]

View File

@ -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())