Fix resource URI for Android.

This commit is contained in:
2023-11-20 20:24:53 +08:00
parent ec8487a4c6
commit 88d198f408
2 changed files with 2 additions and 4 deletions

View File

@@ -399,9 +399,7 @@ namespace Cryville.Crtr {
screenSize = new Vector2(Screen.width, Screen.height);
frustumPlanes = GeometryUtility.CalculateFrustumPlanes(Camera.main);
FileInfo chartFile = new FileInfo(
Game.GameDataPath + "/charts/" + Settings.Default.LoadChart
);
FileInfo chartFile = new FileInfo(Settings.Default.LoadChart);
FileInfo rulesetFile = new FileInfo(
Game.GameDataPath + "/rulesets/" + Settings.Default.LoadRuleset