DDSLoader: fix syntax error

This commit is contained in:
Kirill Vainer 2016-02-21 20:49:28 -05:00
parent a3638f3e0c
commit 2893ac9156

View File

@ -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);
}