This commit is contained in:
CasualPokePlayer 2023-10-02 22:32:30 -07:00
parent af4e9200ed
commit 0d4a1a6b26
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ namespace BizHawk.Client.Common.Filters
// scaleN controls both scaling type in horizontal and vertical directions. If scaleN is defined, scale_xN and scale_yN have no effect.
sp.Scale.X = FetchFloat(dict, $"scale_x{i}", 1);
sp.Scale.Y = FetchFloat(dict, $"scale_y{i}", 1);
if (dict.ContainsValue($"scale{i}"))
if (dict.ContainsKey($"scale{i}"))
{
sp.Scale.X = sp.Scale.Y = FetchFloat(dict, $"scale{i}", 1);
}