diff options
| author | eray orçunus <erayorcunus@gmail.com> | 2020-05-28 13:39:08 +0300 |
|---|---|---|
| committer | eray orçunus <erayorcunus@gmail.com> | 2020-05-28 17:42:40 +0300 |
| commit | 9acf27fc5359ec8a4e047a35384ca28270145db8 (patch) | |
| tree | 708aef083f488f0aa09330abd657ae798d32cb05 /src/core | |
| parent | theoretically fix linux build (diff) | |
| download | re3-9acf27fc5359ec8a4e047a35384ca28270145db8.tar.gz | |
remove inlining attempts + reload frontend options for real
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/Frontend.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/core/Frontend.h b/src/core/Frontend.h index 9a364b71..7d4cdacc 100644 --- a/src/core/Frontend.h +++ b/src/core/Frontend.h @@ -646,13 +646,14 @@ public: int GetNumOptionsCntrlConfigScreens(); int ConstructStatLine(int); - // New (inlined ones and the ones we can't believe it's not inlined) - inline void ThingsToDoBeforeGoingBack(); - inline void ScrollUpListByOne(); - inline void ScrollDownListByOne(); - inline void PageUpList(bool); - inline void PageDownList(bool); - inline int8 GetPreviousPageOption(); + // Those are either inlined in game, not in function yet, or I can't believe that they're not inlined. + // Names were made up by me. + void ThingsToDoBeforeGoingBack(); + void ScrollUpListByOne(); + void ScrollDownListByOne(); + void PageUpList(bool); + void PageDownList(bool); + int8 GetPreviousPageOption(); // uint8 GetNumberOfMenuOptions(); }; |
