Closed koliva8245 closed 5 years ago
string.Format("{0:X2}*.idx", i) is looking for 00*.idx, 01*.idx, …, 0E*.idx, 0F*.idx which is causing it to miss files while running under Linux.
string.Format("{0:X2}*.idx", i)
00*.idx
01*.idx
0E*.idx
0F*.idx
string.Format("{0:x2}*.idx", i) will look for 00*.idx, 01*.idx, …, 0e*.idx, 0f*.idx.
string.Format("{0:x2}*.idx", i)
0e*.idx
0f*.idx
This was only checked against Heroes of the Storm and not any other game.
string.Format("{0:X2}*.idx", i)
is looking for00*.idx
,01*.idx
, …,0E*.idx
,0F*.idx
which is causing it to miss files while running under Linux.string.Format("{0:x2}*.idx", i)
will look for00*.idx
,01*.idx
, …,0e*.idx
,0f*.idx
.This was only checked against Heroes of the Storm and not any other game.