Fixed issue with resource images

This commit is contained in:
JKetelaar
2015-09-14 20:40:46 +02:00
parent 17a4c28d39
commit a1f6995a1e
@@ -33,7 +33,7 @@ public enum Category
*/ */
public static BufferedImage getIcon(String s) { public static BufferedImage getIcon(String s) {
if (images.get(s) == null) { if (images.get(s) == null) {
images.put(s, Images.getResource("/resources/images/category/" + s + ".png")); images.put(s, Images.getResource("/storage/resources/images/category/" + s + ".png"));
} }
return images.get(s); return images.get(s);
} }