jscene: add missing jscene_set_poweroff function

This commit is contained in:
Lephenixnoir 2024-09-03 17:00:53 +02:00
parent aa736bd12a
commit 0c8371edce
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -209,6 +209,11 @@ void jscene_set_mainmenu(jscene *scene, bool mainmenu)
scene->mainmenu = mainmenu;
}
void jscene_set_poweroff(jscene *scene, bool poweroff)
{
scene->poweroff = poweroff;
}
jevent jscene_run(jscene *s)
{
keydev_t *d = keydev_std();