mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 07:14:55 +08:00
[libgdx] Minor SkeletonBinary improvement.
This commit is contained in:
parent
bb8cba13e1
commit
f60f026f09
@ -355,7 +355,7 @@ public class SkeletonBinary {
|
||||
slotCount = input.readInt(true);
|
||||
}
|
||||
|
||||
for (int i = 0, n = slotCount; i < n; i++) {
|
||||
for (int i = 0; i < slotCount; i++) {
|
||||
int slotIndex = input.readInt(true);
|
||||
for (int ii = 0, nn = input.readInt(true); ii < nn; ii++) {
|
||||
String name = input.readStringRef();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user