minor changes that dont matter but whatever

This commit is contained in:
Voxelstice 2026-06-03 23:32:51 +03:00
parent 2a48beecdd
commit 987dbba536

View File

@ -48,11 +48,9 @@ public class GUIScreenRadioAUTOCAL extends GuiScreen {
if (Sys.getVersion().charAt(0) == '3') { if (Sys.getVersion().charAt(0) == '3') {
// probably a LWJGL3ify user, open the folder instead since that somehow seems to work // probably a LWJGL3ify user, open the folder instead since that somehow seems to work
File uploadFolder = new File(MainRegistry.configDir.getParentFile(), "hbmComputerUpload"); File uploadFolder = new File(MainRegistry.configDir.getParentFile(), "hbmComputerUpload");
if (uploadFolder.exists()) { if (uploadFolder.exists()) Sys.openURL(uploadFolder.toString());
org.lwjgl.Sys.openURL(uploadFolder.toString());
}
} else { } else {
org.lwjgl.Sys.openURL(uri.toString()); Sys.openURL(uri.toString());
} }
} }
} }