Skip to content

Commit

Permalink
ci(build): fix missing deed method (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
Th3Un1q3 committed Jun 12, 2023
1 parent 2f2962d commit ddda80f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flipp_pomodoro_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ static bool flipp_pomodoro_app_custom_event_callback(void *ctx, uint32_t event)
if (flipp_pomodoro__get_stage(app->state) == FlippPomodoroStageFocus)
{
// REGISTER a deed on work stage complete to get an acheivement
DOLPHIN_DEED(DolphinDeedPluginGameWin);
dolphin_deed(DolphinDeedPluginGameWin);
};

flipp_pomodoro__toggle_stage(app->state);
Expand Down Expand Up @@ -99,6 +99,8 @@ int32_t flipp_pomodoro_app(void *p)
UNUSED(p);
FlippPomodoroApp *app = flipp_pomodoro_app_alloc();

dolphin_deed(DolphinDeedPluginGameStart);

view_dispatcher_run(app->view_dispatcher);

flipp_pomodoro_app_free(app);
Expand Down

0 comments on commit ddda80f

Please sign in to comment.