NPE check on AudioNode read

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8228 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
bre..ns 2011-09-08 23:46:21 +00:00
parent 2c0f6d2d4d
commit 2e1c4e8c29

View File

@ -758,7 +758,8 @@ public class AudioNode extends Node {
positional = ic.readBoolean("positional", false);
data = im.getAssetManager().loadAudio(key);
if (key != null)
data = im.getAssetManager().loadAudio(key);
}
@Override