mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-01-26 03:25:00 +00:00
cf714d3e66
This reverts commit6e88e33171
, reversing changes made to580fe77fb7
.
11 lines
190 B
C++
11 lines
190 B
C++
#include "scened_app.h"
|
|
|
|
// app enter function
|
|
extern "C" int32_t scened_app(void* p) {
|
|
UNUSED(p);
|
|
ScenedApp* app = new ScenedApp();
|
|
app->run();
|
|
delete app;
|
|
|
|
return 0;
|
|
}
|