commit e709e44dcd03961d236f20eed36f28e229d23c79
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Wed Oct 27 23:55:53 2021 +0200

    Progress with PuzzleTester app.

diff --git a/src/main/java/org/distorted/main/RubikObjectLibInterface.java b/src/main/java/org/distorted/main/RubikObjectLibInterface.java
index 69b1b4d0..fc2cff34 100644
--- a/src/main/java/org/distorted/main/RubikObjectLibInterface.java
+++ b/src/main/java/org/distorted/main/RubikObjectLibInterface.java
@@ -307,6 +307,13 @@ public class RubikObjectLibInterface implements ObjectLibInterface
       }
     }
 
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+  public void onObjectCreated(long time)
+    {
+
+    }
+
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 
   public int getCurrentColor()
diff --git a/src/main/java/org/distorted/main/RubikSurfaceView.java b/src/main/java/org/distorted/main/RubikSurfaceView.java
index d305a71a..78b2ae0d 100644
--- a/src/main/java/org/distorted/main/RubikSurfaceView.java
+++ b/src/main/java/org/distorted/main/RubikSurfaceView.java
@@ -108,6 +108,7 @@ public class RubikSurfaceView extends GLSurfaceView
         RubikObjectLibInterface ref = new RubikObjectLibInterface(act);
         mObjectController = new ObjectControl(act,ref);
         mRenderer = new RubikRenderer(this);
+        ObjectControl.setDmeshMode(true);
 
         final ActivityManager activityManager= (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
 
diff --git a/src/main/java/org/distorted/solvers/SolverMain.java b/src/main/java/org/distorted/solvers/SolverMain.java
index bee18d37..02a1d714 100644
--- a/src/main/java/org/distorted/solvers/SolverMain.java
+++ b/src/main/java/org/distorted/solvers/SolverMain.java
@@ -159,8 +159,6 @@ public class SolverMain implements Runnable
       objectString.append(FACE_NAMES[color]);
       }
 
-android.util.Log.e("D", objectString.toString());
-
     return objectString.toString();
     }
 
diff --git a/src/main/java/org/distorted/tutorials/TutorialObjectLibInterface.java b/src/main/java/org/distorted/tutorials/TutorialObjectLibInterface.java
index e4cd877f..4f420d07 100644
--- a/src/main/java/org/distorted/tutorials/TutorialObjectLibInterface.java
+++ b/src/main/java/org/distorted/tutorials/TutorialObjectLibInterface.java
@@ -41,6 +41,7 @@ public class TutorialObjectLibInterface implements ObjectLibInterface
    public void onScrambleEffectFinished() { }
    public void onBeginRotation() { }
    public void onSolved() { }
+   public void onObjectCreated(long time) { }
    public int getCurrentColor() { return 0; }
    public int cubitIsLocked(ObjectType type, int cubit) { return 0; }
 
