diff --git a/src/BizHawk.Client.Common/config/Config.cs b/src/BizHawk.Client.Common/config/Config.cs index d794dc2f5e..bc39a4252c 100644 --- a/src/BizHawk.Client.Common/config/Config.cs +++ b/src/BizHawk.Client.Common/config/Config.cs @@ -97,7 +97,13 @@ namespace BizHawk.Client.Common public bool StackOSDMessages { get; set; } = true; - private Dictionary TargetZoomFactors { get; set; } = new(); + private Dictionary TargetZoomFactors { get; set; } = new() + { + [VSystemID.Raw.GB] = 3, + [VSystemID.Raw.GBA] = 3, + [VSystemID.Raw.GBC] = 3, + [VSystemID.Raw.N64] = 1, + }; public int GetWindowScaleFor(string sysID) => TargetZoomFactors.GetValueOrPut(sysID, static _ => 2);