ChangeI static const int ti const int in header file.

This commit is contained in:
Don Honerbrink 2015-01-08 13:10:14 +00:00
parent d983686206
commit c4f247e3f5

View File

@ -63,9 +63,9 @@ private:
void LoadListItems(std::string keyPrefix, std::vector<ViewInfo *> *tweenPointList, ViewInfo *defaults, int &selectedItemIndex);
void UpdateViewInfoFromTag(std::string keyPrefix, ViewInfo *p, ViewInfo *defaults);
static const int MENU_FIRST = 0; // first visible item in the list
static const int MENU_LAST = -3; // last visible item in the list
static const int MENU_START = -1; // first item transitions here after it scrolls "off the menu/screen"
static const int MENU_END = -2; // last item transitions here after it scrolls "off the menu/screen"
static const int MENU_CENTER = -4;
const int MENU_FIRST = 0; // first visible item in the list
const int MENU_LAST = -3; // last visible item in the list
const int MENU_START = -1; // first item transitions here after it scrolls "off the menu/screen"
const int MENU_END = -2; // last item transitions here after it scrolls "off the menu/screen"
const int MENU_CENTER = -4;
};