Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Fixed game width bug
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianThomas committed Jul 6, 2021
1 parent 270734c commit ba65926
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/java/de/sth/minesweeper/MineSweeper.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class MineSweeper extends JPanel {
public static int BOMBS = 99;
public static Difficulty DIFFICULTY;
// Game width
public static int GAME_SIZE = 950;
public static int GAME_SIZE = 980;
// Game stats
private final GameStatistic statistic;
// Game over = false (at the beginning)
Expand Down
2 changes: 1 addition & 1 deletion main/java/de/sth/minesweeper/updates/UpdateConstants.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package de.sth.minesweeper.updates;

public abstract class UpdateConstants {
public static final String currentVersion = "v4.9";
public static final String currentVersion = "v4.9.1";

enum UpdateOptions {
/**
Expand Down
Binary file modified out/minesweeper.jar
Binary file not shown.

0 comments on commit ba65926

Please sign in to comment.