Skip to content

Commit

Permalink
Compatibility to SDK 65.0 f7
Browse files Browse the repository at this point in the history
  • Loading branch information
theageoflove committed Jun 13, 2024
1 parent 1190145 commit 6200aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zeitraffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ static void input_callback(InputEvent* input_event, void* ctx) {
furi_message_queue_put(event_queue, &event, FuriWaitForever);
}

static void timer_callback(FuriMessageQueue* event_queue) {
// Проверяем, что контекст не нулевой
static void timer_callback(void* event_queue) {
// Проверяем, что контекст не нулевой
furi_assert(event_queue);

ZeitrafferEvent event = {.type = EventTypeTick};
Expand Down

0 comments on commit 6200aa1

Please sign in to comment.