Skip to content

Commit

Permalink
Re-enabled resizing
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealEmissions committed Mar 20, 2024
1 parent 8f7072a commit 9a6f3fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/src/uk/ac/york/student/DesktopLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static void main(String[] arg) {
config.setHdpiMode(HdpiMode.Logical); // Convert coordinates to be logical (scaled to 1920x1080)
config.setTitle("ENG1");
config.setIdleFPS(15); // Ensure game doesn't take up unnecessary resources when idle
config.setResizable(false); // Disabled until resizing is properly implemented
config.setResizable(true);
config.setInitialBackgroundColor(Color.WHITE);
new Lwjgl3Application(new GdxGame(), config);
}
Expand Down

0 comments on commit 9a6f3fa

Please sign in to comment.