mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-03-02 11:34:38 +01:00
AppletLoader: fix mixed mode message when using custom logo images.
This commit is contained in:
parent
6be13dfd45
commit
4d59d460d0
|
|
@ -1434,7 +1434,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
|
|||
*/
|
||||
protected Image getImage(String s) {
|
||||
try {
|
||||
URL url = AppletLoader.class.getResource("/"+s);
|
||||
URL url = ClassLoader.getSystemClassLoader().getResource("/"+s);
|
||||
|
||||
// if image not found in jar, look outside it
|
||||
if (url == null) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue