mirror of
https://github.com/InfiniTimeOrg/InfiniTime.git
synced 2026-01-23 17:32:08 +01:00
7 lines
176 B
C++
7 lines
176 B
C++
#include "Screen.h"
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
void Screen::RefreshTaskCallback(lv_task_t* task) {
|
|
static_cast<Screen*>(task->user_data)->Refresh();
|
|
}
|