mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-06 23:14:19 +00:00
AppletLoader: don't output needless lzma.jar is missing message on console unless a lzma file actually being loaded.
This commit is contained in:
parent
03fa5dda72
commit
f6b567c5ad
1 changed files with 2 additions and 3 deletions
|
|
@ -709,10 +709,9 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
|
|||
file = file.replace(".pack", "");
|
||||
}
|
||||
|
||||
if (!lzmaSupported) {
|
||||
System.out.println("'lzma.jar' required for LZMA support!");
|
||||
System.out.println("trying files without the lzma extension...");
|
||||
if (!lzmaSupported && file.endsWith(".lzma")) {
|
||||
file = file.replace(".lzma", "");
|
||||
System.out.println("LZMA decoder (lzma.jar) not found, trying " + file + " without lzma extension.");
|
||||
}
|
||||
return file;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue