BizHawk/BizHawk.Client.Common/config/ZoomFactors.cs

23 lines
311 B
C#

using System.Collections.Generic;
namespace BizHawk.Client.Common
{
public class ZoomFactors : Dictionary<string, int>
{
public new int this[string index]
{
get
{
if (!ContainsKey(index))
{
Add(index, 2);
}
return base[index];
}
set => base[index] = value;
}
}
}