소스 검색

fixing some big bugs

MX 2 년 전
부모
커밋
e453592943
2개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      application.fam
  2. 2 1
      blackjack.c

+ 1 - 1
application.fam

@@ -10,6 +10,6 @@ App(
     fap_category="Games",
     fap_icon_assets="assets",
     fap_author="@teeebor",
-    fap_version="1.0",
+    fap_version="1.1",
     fap_description="Blackjack Game",
 )

+ 2 - 1
blackjack.c

@@ -611,8 +611,9 @@ int32_t blackjack_app(void* p) {
                 processing = game_state->processing;
             }
         }
-        view_port_update(view_port);
+
         furi_mutex_release(game_state->mutex);
+        view_port_update(view_port);
     }
 
     furi_timer_free(timer);