1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixes to global indexing

This commit is contained in:
Brian Fiete 2020-05-22 06:39:12 -07:00
parent 24f931df51
commit adbae6f1d4
3 changed files with 7 additions and 7 deletions

View file

@ -35,8 +35,8 @@ namespace Tests
Test.Assert(iArr[3] == 0);
iArr[0] += 1000;
iArr[2] += 2000;
iArr[3] += 3000;
iArr[1] += 2000;
iArr[2] += 3000;
iArr[3] += 4000;
Test.Assert(iArr[0] == 1123);