Fix crash during packet sniff

Replace SimpleList with LinkedList
This commit is contained in:
Just Call Me Koko
2020-02-04 18:29:47 -05:00
parent 8916178526
commit e8e1686918
4 changed files with 16 additions and 15 deletions

View File

@@ -58,7 +58,7 @@ struct MenuNode {
// Full Menus
struct Menu {
String name;
SimpleList<MenuNode>* list;
LinkedList<MenuNode>* list;
Menu * parentMenu;
uint8_t selected;
};