Sfoglia il codice sorgente

fixing some big bugs

MX 2 anni fa
parent
commit
0f75a0e5d9
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 1 1
      application.fam
  2. 1 1
      game_2048.c

+ 1 - 1
application.fam

@@ -11,6 +11,6 @@ App(
 	fap_icon="game_2048.png",
     fap_category="Games",
     fap_author="@eugene-kirzhanov",
-    fap_version="1.1",
+    fap_version="1.2",
     fap_description="Play the port of the 2048 game on Flipper Zero.",
 )

+ 1 - 1
game_2048.c

@@ -494,8 +494,8 @@ int32_t game_2048_app() {
                 }
             }
 
-            view_port_update(view_port);
             furi_mutex_release(game_state->mutex);
+            view_port_update(view_port);
         }
     }