aboutsummaryrefslogtreecommitdiffstats
path: root/ardor3d-jogl/src
diff options
context:
space:
mode:
Diffstat (limited to 'ardor3d-jogl/src')
-rw-r--r--ardor3d-jogl/src/main/java/com/ardor3d/image/util/jogl/JoglImageLoader.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ardor3d-jogl/src/main/java/com/ardor3d/image/util/jogl/JoglImageLoader.java b/ardor3d-jogl/src/main/java/com/ardor3d/image/util/jogl/JoglImageLoader.java
index 4e3a6cb..bf3be72 100644
--- a/ardor3d-jogl/src/main/java/com/ardor3d/image/util/jogl/JoglImageLoader.java
+++ b/ardor3d-jogl/src/main/java/com/ardor3d/image/util/jogl/JoglImageLoader.java
@@ -164,7 +164,7 @@ public class JoglImageLoader implements ImageLoader {
* @throws IOException
*/
protected String getFileSuffix(final InputStream is) throws IOException {
- if (is.markSupported() && is.available() >= 16) {
+ if (is.markSupported() && is.available() >= 32) {
is.mark(32);
try {
final byte[] b = new byte[32];