Load animated cursor NPE

Potential NPE when loading animated cursors (.ani)
accellbaker
Nebloksiam 6 years ago committed by Stephen Gold
parent 02ec12e454
commit e8cb3124f2
  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