Load animated cursor NPE

Potential NPE when loading animated cursors (.ani)
v3.2
Nebloksiam 6 years ago committed by Stephen Gold
parent f71aad128a
commit 0f66b814b3
  1. 2
      jme3-desktop/src/main/java/com/jme3/cursors/plugins/CursorLoader.java

@ -699,7 +699,7 @@ public class CursorLoader implements AssetLoader {
imgDelay = BufferUtils.createIntBuffer(numImages);
}
imgDelay.put(cid.imgDelay);
} else if (imgData != null) {
} else if (imgDelay != null) {
imgDelay.put(cid.imgDelay);
}
xHotSpot = cid.xHotSpot;

Loading…
Cancel
Save