Skip to content

Commit

Permalink
Update ConnectFourCommand.java
Browse files Browse the repository at this point in the history
Co-authored-by: Joseph Burton <[email protected]>
  • Loading branch information
RealRTTV and Earthcomputer authored Nov 30, 2024
1 parent 2b91ac5 commit 1e2ed4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public static class ConnectFourGameScreen extends Screen {
private static final int TEXTURE_SLOT_HEIGHT = TEXTURE_PIECE_HEIGHT + 2 * TEXTURE_SLOT_BORDER_HEIGHT;
private static final int TEXTURE_BOARD_WIDTH = TEXTURE_SLOT_WIDTH * ConnectFourGame.WIDTH + TEXTURE_BOARD_BORDER_WIDTH * 2;
private static final int TEXTURE_BOARD_HEIGHT = TEXTURE_SLOT_HEIGHT * ConnectFourGame.HEIGHT + TEXTURE_BOARD_BORDER_HEIGHT * 2;
private static final int TEXTURE_PIECES_WIDTH = TEXTURE_PIECE_WIDTH + TEXTURE_PIECE_WIDTH; // red and yellow
private static final int TEXTURE_PIECES_WIDTH = 2 * TEXTURE_PIECE_WIDTH; // red and yellow
private static final int TEXTURE_PIECES_HEIGHT = TEXTURE_PIECE_HEIGHT;

private static final int BOARD_WIDTH = SCALE * TEXTURE_BOARD_WIDTH;
Expand Down

0 comments on commit 1e2ed4e

Please sign in to comment.