Skip to content

Commit e1d4c21

Browse files
committed
misc: fix ios rom path script error
1 parent e204e41 commit e1d4c21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VisualPinball.Engine.PinMAME.Unity/Runtime/PinMameGamelogicEngine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public void OnInit(Player player, TableApi tableApi, BallManager ballManager)
153153
byte[] data = null;
154154

155155
#if UNITY_IOS
156-
data = File.ReadAllBytes(Path.Combine(Application.streamingAssetsPath, $"{romId}.zip");
156+
data = File.ReadAllBytes(Path.Combine(Application.streamingAssetsPath, $"{romId}.zip"));
157157
#else
158158
UnityWebRequest webRequest = new UnityWebRequest(Path.Combine(Application.streamingAssetsPath, $"{romId}.zip"));
159159

0 commit comments

Comments
 (0)