Skip to content

Commit ddda80f

Browse files
authored
ci(build): fix missing deed method (#198)
1 parent 2f2962d commit ddda80f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

flipp_pomodoro_app.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ static bool flipp_pomodoro_app_custom_event_callback(void *ctx, uint32_t event)
3838
if (flipp_pomodoro__get_stage(app->state) == FlippPomodoroStageFocus)
3939
{
4040
// REGISTER a deed on work stage complete to get an acheivement
41-
DOLPHIN_DEED(DolphinDeedPluginGameWin);
41+
dolphin_deed(DolphinDeedPluginGameWin);
4242
};
4343

4444
flipp_pomodoro__toggle_stage(app->state);
@@ -99,6 +99,8 @@ int32_t flipp_pomodoro_app(void *p)
9999
UNUSED(p);
100100
FlippPomodoroApp *app = flipp_pomodoro_app_alloc();
101101

102+
dolphin_deed(DolphinDeedPluginGameStart);
103+
102104
view_dispatcher_run(app->view_dispatcher);
103105

104106
flipp_pomodoro_app_free(app);

0 commit comments

Comments
 (0)