Add "v" before version in latest version text

This commit is contained in:
2025-06-05 17:49:33 -07:00
parent 5a231e0529
commit 3815040f47

View File

@@ -70,6 +70,6 @@ public class LatestVersionText : MonoBehaviour
else if (latest == "-1")
text.text = "Latest: N/A";
else
text.text = "Latest: " + latest;
text.text = "Latest: v" + latest;
}
}