Skip to content

Commit fe3d45b

Browse files
committed
dsda: default scale 2
1 parent dce6253 commit fe3d45b

File tree

2 files changed

+1
-3
lines changed
  • src
    • BizHawk.Client.Common/config
    • BizHawk.Emulation.Cores/Computers/Doom

2 files changed

+1
-3
lines changed

src/BizHawk.Client.Common/config/Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public void ResolveDefaults()
113113

114114
private Dictionary<string, int> TargetZoomFactors { get; set; } = new()
115115
{
116-
[VSystemID.Raw.Doom] = 1,
116+
[VSystemID.Raw.Doom] = 2,
117117
[VSystemID.Raw.GB] = 3,
118118
[VSystemID.Raw.GBA] = 3,
119119
[VSystemID.Raw.GBC] = 3,

src/BizHawk.Emulation.Cores/Computers/Doom/DSDA.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,7 @@ public DSDA(CoreLoadParameters<DoomSettings, DoomSyncSettings> lp)
100100
+ $"dsda_coordinate_display {(_settings.DisplayCoordinates ? 1 : 0)}\n"
101101
+ $"dsda_command_display { (_settings.DisplayCommands ? 1 : 0)}\n"
102102
+ $"render_wipescreen { (_syncSettings.RenderWipescreen ? 1 : 0)}\n"
103-
+ "render_stretchsky 0\n"
104103
+ "boom_translucent_sprites 0\n"
105-
+ "render_doom_lightmaps 1\n"
106104
+ "render_aspect 3\n" // 4:3, controls FOV on higher resolutions (see SetRatio() in the core)
107105
+ "render_stretch_hud 0\n"
108106
+ "uncapped_framerate 0\n"

0 commit comments

Comments
 (0)