1
0

Fix RSORT

This commit is contained in:
otya128
2017-07-28 23:08:09 +09:00
parent 3eae20517a
commit e405dc66e4
3 changed files with 49 additions and 24 deletions

View File

@@ -237,7 +237,7 @@ class BG
for(int i = x; i <= x2; i++)
{
chip[i + y * width] = BGChip(screendata[index] & 4095);
index = (index + 1) % screendata.length;
index = (index + 1) % cast(int)screendata.length;
}
}
int get(int x, int y, int flag)