Skip to content

Commit

Permalink
Editor: fix gfx filter check in BuildTargetAndroid
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Dec 25, 2024
1 parent 8d9fc8c commit 6d7b756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/AGS.Editor/BuildTargets/BuildTargetAndroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private void WriteAndroidCfg(string outputDir)
cfg["graphics"]["renderer"] = "1";
}

if (setup.GraphicsFilter == "StdScale") {
if (setup.GraphicsFilter == RuntimeSetup.DEFAULT_GFX_FILTER_NAME) {
cfg["graphics"]["smoothing"] = "0";
} else {
cfg["graphics"]["smoothing"] = "1";
Expand Down

0 comments on commit 6d7b756

Please sign in to comment.