浏览代码

Load animated cursor NPE

Potential NPE when loading animated cursors (.ani)
Nebloksiam 7 年之前
父节点
当前提交
0f66b814b3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      jme3-desktop/src/main/java/com/jme3/cursors/plugins/CursorLoader.java

+ 1 - 1
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;