commit f781325adab907442e91334e0154917d8c5cdc76
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Sat Feb 4 23:27:04 2023 +0100

    Bugfixes for touch control - specifically for furious swiping and concurrect backing of moves.

diff --git a/src/main/java/org/distorted/helpers/MovesController.java b/src/main/java/org/distorted/helpers/MovesController.java
index cde22880..37e458ed 100644
--- a/src/main/java/org/distorted/helpers/MovesController.java
+++ b/src/main/java/org/distorted/helpers/MovesController.java
@@ -85,9 +85,9 @@ public class MovesController implements MovesFinished
 
       if( numMoves>0 )
         {
-        Move move   = mMoves.remove(numMoves-1);
-        int axis    = move.mAxis;
-        int angle   = move.mAngle;
+        Move move = mMoves.remove(numMoves-1);
+        int axis  = move.mAxis;
+        int angle = move.mAngle;
 
         if( angle!=0 )
           {
@@ -98,7 +98,7 @@ public class MovesController implements MovesFinished
           }
         else
           {
-          android.util.Log.e("solution", "error: trying to back move of angle 0");
+          android.util.Log.e("backMove", "error: trying to back move of angle 0");
           }
 
         if( numMoves==1 ) changeBackMove(act, false);
