From: <ka...@us...> - 2011-02-03 09:35:07
|
Revision: 3484 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3484&view=rev Author: kappa1 Date: 2011-02-03 09:35:00 +0000 (Thu, 03 Feb 2011) Log Message: ----------- AppletLoader - added small bit of missing code (doh), thx to arielsan for spotting it Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java Modified: trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2011-02-02 22:29:18 UTC (rev 3483) +++ trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2011-02-03 09:35:00 UTC (rev 3484) @@ -1560,7 +1560,7 @@ // if image failed to load, try another method if (url == null) { - Thread.currentThread().getContextClassLoader().getResource(s); + url = Thread.currentThread().getContextClassLoader().getResource(s); } Image image = super.getImage(url); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |