bugfix function/callback now init as nullptr

This commit is contained in:
2023-01-04 02:32:18 +01:00
parent 2154e3d012
commit 498221c9d3
+1 -1
View File
@@ -92,7 +92,7 @@ class MenuAction {
private:
const char* name;
void (*function) ();
void (*function) () = nullptr;
void (*callback) () = nullptr;
bool isMenu = false;