summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/src/ch/asynk/zproject/GameBoard.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/ch/asynk/zproject/GameBoard.java b/core/src/ch/asynk/zproject/GameBoard.java
index b855ff2..7ca3542 100644
--- a/core/src/ch/asynk/zproject/GameBoard.java
+++ b/core/src/ch/asynk/zproject/GameBoard.java
@@ -77,8 +77,8 @@ public class GameBoard implements Disposable, Touchable
r = 90;
dx = - ( this.map.getWidth() - this.map.getHeight() ) / 2;
dy = - dx;
- w = this.map.getWidth();
- h = this.map.getHeight();
+ w = this.map.getHeight();
+ h = this.map.getWidth();
this.board = BoardFactory.getBoard(BoardFactory.BoardType.HEX, 110, 103, 50, BoardFactory.BoardOrientation.HORIZONTAL);
}