Skip to content

Commit

Permalink
Enable additive combo count scaling by default
Browse files Browse the repository at this point in the history
  • Loading branch information
flustix committed Sep 18, 2024
1 parent 3e2fd47 commit 7add192
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ private void load()
{
AutoSizeAxes = Axes.Both;

scaleAdditive = Settings.GetSetting("scale-additive", false);
scaleAdditive = Settings.GetSetting("scale-additive", true);

InternalChild = text = new FluXisSpriteText
{
Expand Down
2 changes: 1 addition & 1 deletion fluXis.Game/Screens/Gameplay/HUD/LayoutManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public DefaultLayout()
Position = new Vector2(0, -32),
Settings = new Dictionary<string, object>
{
{ "scale-additive", false }
{ "scale-additive", true }
}
}
},
Expand Down

0 comments on commit 7add192

Please sign in to comment.