Center client window, default size to 1024x768 (insets are annoying)

This commit is contained in:
Pazaz 2022-06-19 21:36:27 -04:00
parent 41ea81d31a
commit a63bf74124

View file

@ -258,8 +258,8 @@ public final class client extends GameShell {
@Pc(146) client c = new client();
instance = c;
c.startApplication(modeWhat + 32, "runescape");
GameShell.frame.setLocation(40, 40);
GameShell.frame.setSize(768, 530); //set a reasonable size by default
GameShell.frame.setLocationRelativeTo(null);
GameShell.frame.setSize(1024, 768); // set a reasonable size by default
} catch (@Pc(167) Exception ex) {
TracingException.report(null, ex);
}