diff options
Diffstat (limited to 'assets/ui/menudef.h')
-rw-r--r-- | assets/ui/menudef.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/assets/ui/menudef.h b/assets/ui/menudef.h index 3adc8a1a..7e5074f7 100644 --- a/assets/ui/menudef.h +++ b/assets/ui/menudef.h @@ -21,19 +21,22 @@ enum ITEM_TYPE_BIND // keyboard control configuration }; +// The first items in these enums are the defaults if menus do not specify enum { ALIGN_LEFT, // left alignment ALIGN_CENTER, // center alignment ALIGN_RIGHT, // right alignment - ASPECT_NONE // no aspect compensation + ASPECT_NONE, // no aspect compensation + ALIGN_NONE }; enum { VALIGN_BOTTOM, // bottom alignment VALIGN_CENTER, // center alignment - VALIGN_TOP // top alignment + VALIGN_TOP, // top alignment + VALIGN_NONE }; enum |