mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
"Fixed" compiling to iOS 64bit.
http://esotericsoftware.com/forum/viewtopic.php?p=19690#p19690
This commit is contained in:
parent
7c861591d4
commit
8dace6cfef
@ -588,7 +588,8 @@ namespace Spine {
|
|||||||
while (originalIndex != slotIndex)
|
while (originalIndex != slotIndex)
|
||||||
unchanged[unchangedIndex++] = originalIndex++;
|
unchanged[unchangedIndex++] = originalIndex++;
|
||||||
// Set changed items.
|
// Set changed items.
|
||||||
drawOrder[originalIndex + (int)(float)offsetMap["offset"]] = originalIndex++;
|
int index = originalIndex + (int)(float)offsetMap["offset"];
|
||||||
|
drawOrder[index] = originalIndex++;
|
||||||
}
|
}
|
||||||
// Collect remaining unchanged items.
|
// Collect remaining unchanged items.
|
||||||
while (originalIndex < slotCount)
|
while (originalIndex < slotCount)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user