diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-02-24 10:24:38 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-02-24 10:24:38 +0100 |
commit | 9408e5f148911097588376ece55c492355e1f7bd (patch) | |
tree | 0abfdef37490e766809c13539f56286551c0dc48 | |
parent | d8bef160e1e30ab2a6769aec75e5ff8944ec1e48 (diff) | |
download | RustAndDust-9408e5f148911097588376ece55c492355e1f7bd.zip RustAndDust-9408e5f148911097588376ece55c492355e1f7bd.tar.gz |
RustAndDust: disable DB debugging output
-rw-r--r-- | core/src/ch/asynk/rustanddust/RustAndDust.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/ch/asynk/rustanddust/RustAndDust.java b/core/src/ch/asynk/rustanddust/RustAndDust.java index ef16bc5..a5de2c4 100644 --- a/core/src/ch/asynk/rustanddust/RustAndDust.java +++ b/core/src/ch/asynk/rustanddust/RustAndDust.java @@ -132,7 +132,7 @@ public class RustAndDust extends Game this.hudCorrection = ((int) (125 * Gdx.graphics.getDensity()) - 75); debug("create() [" + Gdx.graphics.getWidth() + ";" + Gdx.graphics.getHeight() + "] " + Gdx.graphics.getDensity() + " -> " + hudCorrection); - db = new DB(Gdx.files.internal(dbFile()).path(), true); + db = new DB(Gdx.files.internal(dbFile()).path(), false); db.setup(); manager = new AssetManager(); |