Fix linkshell rotation

This commit is contained in:
Infi
2024-11-17 19:16:21 +01:00
parent bf27d3e853
commit a648bcf60d
5 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ public static class GlobalParametersCache
Cache = new int[gp.MySize];
for (ulong i = 0; i < gp.MySize; i++)
{
var p = gp.Get(i);
var p = gp[(long)i];
if (p.Type == TextParameterType.Integer)
Cache[(int)i] = p.IntValue;
else