mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-05 02:06:53 +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);
|
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);
|
int slotIndex = input.readInt(true);
|
||||||
for (int ii = 0, nn = input.readInt(true); ii < nn; ii++) {
|
for (int ii = 0, nn = input.readInt(true); ii < nn; ii++) {
|
||||||
String name = input.readStringRef();
|
String name = input.readStringRef();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user