summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/zproject/GameBoard.java
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2018-09-13 18:55:07 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2018-09-13 18:55:07 +0200
commit7eb1beae9fd79a07783bd850a5d739a9813797dc (patch)
tree0cac63174a7d3b4e8de54b2ec457957918c0608e /core/src/ch/asynk/zproject/GameBoard.java
parentf3eed35487ae3049bde27d3a20fd36a34cef9469 (diff)
downloadgdx-boardgame-7eb1beae9fd79a07783bd850a5d739a9813797dc.zip
gdx-boardgame-7eb1beae9fd79a07783bd850a5d739a9813797dc.tar.gz
ZProject -> GdxBoardTest
Diffstat (limited to 'core/src/ch/asynk/zproject/GameBoard.java')
-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 489e00d..b6f2331 100644
--- a/core/src/ch/asynk/zproject/GameBoard.java
+++ b/core/src/ch/asynk/zproject/GameBoard.java
@@ -38,9 +38,9 @@ public class GameBoard implements Disposable, Touchable
@Override public boolean touch(float x, float y)
{
board.toBoard(x, y, v);
- ZProject.debug("BoardGame", String.format("touchDown [%d;%d] => [%d;%d]", (int)x, (int)y, (int)v.x, (int)v.y));
+ GdxBoardTest.debug("BoardGame", String.format("touchDown [%d;%d] => [%d;%d]", (int)x, (int)y, (int)v.x, (int)v.y));
board.centerOf((int)v.x, (int)v.y, v);
- ZProject.debug("BoardGame", String.format(" => [%d;%d]", (int)v.x, (int)v.y));
+ GdxBoardTest.debug("BoardGame", String.format(" => [%d;%d]", (int)v.x, (int)v.y));
return true;
}