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();
|
|
}
|