diff --git a/pom.xml b/pom.xml index 2921441f..c3d33d3e 100644 --- a/pom.xml +++ b/pom.xml @@ -142,12 +142,12 @@ org.lwjgl.lwjgl lwjgl - 2.9.1 + 2.9.3 org.slick2d slick2d-core - 1.0.0 + 1.0.1 org.jcraft @@ -197,17 +197,22 @@ org.apache.maven maven-artifact - 3.0.3 + 3.3.3 org.apache.commons commons-compress - 1.8 + 1.9 + + + org.tukaani + xz + 1.5 com.github.jponge lzma-java - 1.2 + 1.3 diff --git a/src/org/newdawn/slick/Image.java b/src/org/newdawn/slick/Image.java index 1737a808..38d9e8be 100644 --- a/src/org/newdawn/slick/Image.java +++ b/src/org/newdawn/slick/Image.java @@ -595,6 +595,7 @@ public class Image implements Renderable { * @param y The y location to draw the image at * @param filter The color to filter with when drawing */ + @Override public void draw(float x, float y, Color filter) { init(); draw(x,y,width,height, filter); @@ -719,6 +720,7 @@ public class Image implements Renderable { * @param height * The height to render the image at */ + @Override public void draw(float x,float y,float width,float height) { init(); draw(x,y,width,height,Color.white); @@ -797,6 +799,7 @@ public class Image implements Renderable { * @param height The height to render the image at * @param filter The color to filter with while drawing */ + @Override public void draw(float x,float y,float width,float height,Color filter) { if (alpha != 1) { if (filter == null) {