Skip to content

Commit

Permalink
0.2.9b
Browse files Browse the repository at this point in the history
  • Loading branch information
xerysherry committed Dec 19, 2020
1 parent 308fcf0 commit 1e6f36c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
14 changes: 9 additions & 5 deletions Assets/Scripts/Monospaced.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,15 @@ public override void ModifyMesh(VertexHelper vh)
}
else if (richtext && c == '<')
{
i = GetNextValidIndex(content, i);
if (i >= length)
break;
i -= 1;
continue;
var nexti = GetNextValidIndex(content, i);
if (nexti > i)
{
i = nexti;
if (i >= length)
break;
i -= 1;
continue;
}
}

vh.PopulateUIVertex(ref v1, vi * 4 + 0);
Expand Down
4 changes: 2 additions & 2 deletions ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
bundleVersion: 0.2.9a
bundleVersion: 0.2.9b
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down Expand Up @@ -176,7 +176,7 @@ PlayerSettings:
applicationIdentifier:
Android: xerysherry.uEmuera
buildNumber: {}
AndroidBundleVersionCode: 14
AndroidBundleVersionCode: 15
AndroidMinSdkVersion: 19
AndroidTargetSdkVersion: 0
AndroidPreferredInstallLocation: 1
Expand Down

0 comments on commit 1e6f36c

Please sign in to comment.