diff options
-rw-r--r-- | core/src/ch/asynk/rustanddust/util/DB.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/ch/asynk/rustanddust/util/DB.java b/core/src/ch/asynk/rustanddust/util/DB.java index ef24c79..7b5a661 100644 --- a/core/src/ch/asynk/rustanddust/util/DB.java +++ b/core/src/ch/asynk/rustanddust/util/DB.java @@ -262,13 +262,13 @@ public class DB public boolean storeGameState(int game, int turn, int player, String state) { - RustAndDust.debug("storeStateGame"); + RustAndDust.debug("storeGameState"); try { String hash = getDigest(state); if (hash == null) return false; exec(String.format(STORE_GAME_STATE, turn, player, state, hash, game)); } catch (SQLiteGdxException e) { - RustAndDust.error("storeStateGame"); + RustAndDust.error("storeGameState"); return false; } return true; |