From 2893ac91565ae9e229742848f5503d2b2cedb497 Mon Sep 17 00:00:00 2001 From: Kirill Vainer Date: Sun, 21 Feb 2016 20:49:28 -0500 Subject: [PATCH] DDSLoader: fix syntax error --- .../src/plugins/java/com/jme3/texture/plugins/DDSLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jme3-core/src/plugins/java/com/jme3/texture/plugins/DDSLoader.java b/jme3-core/src/plugins/java/com/jme3/texture/plugins/DDSLoader.java index a4fdee761..b0699f900 100644 --- a/jme3-core/src/plugins/java/com/jme3/texture/plugins/DDSLoader.java +++ b/jme3-core/src/plugins/java/com/jme3/texture/plugins/DDSLoader.java @@ -164,7 +164,7 @@ public class DDSLoader implements AssetLoader { compressed = true; bpp = 4; } else { - pixelFormat = DXGIFormat.getJmeFormat(dxgiFormat); + pixelFormat = null; // DXGIFormat.getJmeFormat(dxgiFormat); if (pixelFormat == null) { throw new IOException("Unsupported DX10 format: " + dxgiFormat); }