diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-03-24 19:50:04 +0100 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-03-26 18:27:10 +0100 |
commit | e6eb704510c9dd9ac2948a6f3840c296daac6381 (patch) | |
tree | c830417bd5a8190a165bfa5423a5bb741eca7845 | |
parent | db6dcbb38676462e452fa0ecaf4897f4dba00f09 (diff) | |
download | syslinux.git-e6eb704510c9dd9ac2948a6f3840c296daac6381.tar.gz syslinux.git-e6eb704510c9dd9ac2948a6f3840c296daac6381.tar.xz syslinux.git-e6eb704510c9dd9ac2948a6f3840c296daac6381.zip |
menu: Increasing the maximum number of menus
Impact: some hosts can generate many menus when used with hdt
In some cases, we can run out of menus
-rw-r--r-- | com32/cmenu/libmenu/menu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/cmenu/libmenu/menu.h b/com32/cmenu/libmenu/menu.h index d8db6c25..9b009db1 100644 --- a/com32/cmenu/libmenu/menu.h +++ b/com32/cmenu/libmenu/menu.h @@ -77,7 +77,7 @@ #define SCROLLBOX 176 // Filled char to display // Attributes of the menu system -#define MAXMENUS 100 // Maximum number of menu's allowed +#define MAXMENUS 150 // Maximum number of menu's allowed #define MAXMENUSIZE 60 // Default value for max num of entries in each menu #define MAXMENUHEIGHT 20 // Maximum number of entries displayed #define MENUBOXTYPE BOX_SINSIN // Default box type Look at tui.h for other values |