diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-03-25 15:13:06 +0100 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-03-26 16:54:03 +0100 |
commit | 0fe55eb5432906016cc3526caf3f86d5bf85aff1 (patch) | |
tree | 0f4f6bfafc9e3138bf090efb16b18e6fa22c2eab /src/core/Frontend.h | |
parent | Merge pull request #353 from Sergeanur/Debug (diff) | |
download | re3-0fe55eb5432906016cc3526caf3f86d5bf85aff1.tar re3-0fe55eb5432906016cc3526caf3f86d5bf85aff1.tar.gz re3-0fe55eb5432906016cc3526caf3f86d5bf85aff1.tar.bz2 re3-0fe55eb5432906016cc3526caf3f86d5bf85aff1.tar.lz re3-0fe55eb5432906016cc3526caf3f86d5bf85aff1.tar.xz re3-0fe55eb5432906016cc3526caf3f86d5bf85aff1.tar.zst re3-0fe55eb5432906016cc3526caf3f86d5bf85aff1.zip |
Diffstat (limited to 'src/core/Frontend.h')
-rw-r--r-- | src/core/Frontend.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/core/Frontend.h b/src/core/Frontend.h index 6d7327d3..3dbed164 100644 --- a/src/core/Frontend.h +++ b/src/core/Frontend.h @@ -403,7 +403,7 @@ public: int32 m_nHelperTextMsgId; bool m_bLanguageLoaded; bool m_bMenuActive; - bool m_bMenuNotProcessed; + bool m_bMenuStateChanged; bool m_bWaitingForNewKeyBind; bool m_bStartGameLoading; bool m_bFirstTime; @@ -540,8 +540,14 @@ public: void WaitForUserCD(); void PrintController(); - // New content: - uint8 GetNumberOfMenuOptions(); + // New (not in function or inlined in the game) + void ThingsToDoBeforeLeavingPage(); + void ScrollUpListByOne(); + void ScrollDownListByOne(); + void PageUpList(bool); + void PageDownList(bool); + + // uint8 GetNumberOfMenuOptions(); }; static_assert(sizeof(CMenuManager) == 0x564, "CMenuManager: error"); |