commit 14f14138a972a3a20c6aa78233f8b828aac20548
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Sat Jun 12 12:58:36 2021 +0200

    Correct the way we overlay our (possibly) better local (i.e. unsubmitted yet or submitted, but not picked up by the 'clean_db' cron job) records on top of the DB records ini the 'Scores' dialog.

diff --git a/src/main/java/org/distorted/dialogs/RubikDialogScoresView.java b/src/main/java/org/distorted/dialogs/RubikDialogScoresView.java
index e28b7120..28d6d1f6 100644
--- a/src/main/java/org/distorted/dialogs/RubikDialogScoresView.java
+++ b/src/main/java/org/distorted/dialogs/RubikDialogScoresView.java
@@ -112,7 +112,7 @@ public class RubikDialogScoresView extends FrameLayout
       {
       if( name[j] != null )
         {
-        if( !mySubmitted && myRecordInSeconds<time[j] && !inserted )
+        if( myRecordInSeconds<time[j] && !inserted )
           {
           inserted = true;
           View row = createRow(act, myCountryID, myName, myRecord, height, red);
diff --git a/src/main/java/org/distorted/network/RubikNetwork.java b/src/main/java/org/distorted/network/RubikNetwork.java
index 99a9fd02..80cdcfe8 100644
--- a/src/main/java/org/distorted/network/RubikNetwork.java
+++ b/src/main/java/org/distorted/network/RubikNetwork.java
@@ -56,10 +56,10 @@ public class RubikNetwork implements Runnable
   private static final int DEBUG      = 2;
   private static final int IDLE       = 3;
 
-  private static final int REND_ADRENO = 0;
-  private static final int REND_MALI   = 1;
-  private static final int REND_POWER  = 2;
-  private static final int REND_OTHER  = 3;
+  private static final int REND_ADRENO= 0;
+  private static final int REND_MALI  = 1;
+  private static final int REND_POWER = 2;
+  private static final int REND_OTHER = 3;
 
   private final String[] hex = {
     "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
