From 5ef32c1da777858093619cb216ec8c314d27927d Mon Sep 17 00:00:00 2001 From: emb Date: Thu, 8 Jan 2015 07:18:25 -0600 Subject: [PATCH] Moved static const menu options to cpp file --- RetroFE/Source/Graphics/PageBuilder.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/RetroFE/Source/Graphics/PageBuilder.h b/RetroFE/Source/Graphics/PageBuilder.h index 0fb9d1b..23890d0 100644 --- a/RetroFE/Source/Graphics/PageBuilder.h +++ b/RetroFE/Source/Graphics/PageBuilder.h @@ -62,10 +62,4 @@ private: void LoadListItems(std::string keyPrefix, std::vector *tweenPointList, ViewInfo *defaults, int &selectedItemIndex); void UpdateViewInfoFromTag(std::string keyPrefix, ViewInfo *p, ViewInfo *defaults); - - 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; };