Tibor Tálosi 2 лет назад
Родитель
Сommit
76a3685f19
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      blackjack.c

+ 2 - 2
blackjack.c

@@ -179,7 +179,7 @@ void lose(void *ctx) {
 }
 }
 
 
 void win(void *ctx) {
 void win(void *ctx) {
-    DOLPHIN_DEED(DolphinDeedPluginGameWin);
+    dolphin_deed(DolphinDeedPluginGameWin);
     GameState *game_state = ctx;
     GameState *game_state = ctx;
     game_state->state = GameStatePlay;
     game_state->state = GameStatePlay;
     game_state->player_score += game_state->bet * 2;
     game_state->player_score += game_state->bet * 2;
@@ -474,7 +474,7 @@ int32_t blackjack_app(void *p) {
     int32_t return_code = 0;
     int32_t return_code = 0;
 
 
     FuriMessageQueue *event_queue = furi_message_queue_alloc(8, sizeof(AppEvent));
     FuriMessageQueue *event_queue = furi_message_queue_alloc(8, sizeof(AppEvent));
-    DOLPHIN_DEED(DolphinDeedPluginGameStart);
+    dolphin_deed(DolphinDeedPluginGameStart);
     GameState *game_state = malloc(sizeof(GameState));
     GameState *game_state = malloc(sizeof(GameState));
     game_state->menu= malloc(sizeof(Menu));
     game_state->menu= malloc(sizeof(Menu));
     game_state->menu->menu_width=40;
     game_state->menu->menu_width=40;