Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
TalicZealot committed Jul 12, 2024
1 parent 8e01467 commit 8750f96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions SotnRandoTools/src/RandoTracker/TrackerRendererOpenGL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ public Text(string text, int windowWidth, int windowHeight, int collectedUniform
float rawScale = (float) (windowWidth - (TextPadding * 2)) / (float) ((text.Length) * (glyphWidth + 1));
scale = (float) Math.Floor((double) rawScale);

if (scale < 1)
if (rawScale < 1)
{
scale = rawScale;
scale = 1;
}

if (scale > 4)
Expand Down
2 changes: 1 addition & 1 deletion SotnRandoTools/src/SotnRandoTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<OutputType>Library</OutputType>
<EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
<AnalysisLevel>5.0</AnalysisLevel>
<Version>2.0.0</Version>
<Version>2.0.1</Version>
<Description>A collection of tools to enhance the experience of playing the SotN randomizer.</Description>
<Copyright />
<PackageProjectUrl>https://taliczealot.github.io/#/projects/sotnrandotools</PackageProjectUrl>
Expand Down

0 comments on commit 8750f96

Please sign in to comment.