mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-12 18:18:43 +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)
|
||||
unchanged[unchangedIndex++] = originalIndex++;
|
||||
// Set changed items.
|
||||
drawOrder[originalIndex + (int)(float)offsetMap["offset"]] = originalIndex++;
|
||||
int index = originalIndex + (int)(float)offsetMap["offset"];
|
||||
drawOrder[index] = originalIndex++;
|
||||
}
|
||||
// Collect remaining unchanged items.
|
||||
while (originalIndex < slotCount)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user