diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2020-10-28 03:11:34 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2020-10-28 13:05:04 +0100 |
commit | 922d06ab1fb1c2222b2738bd12cbc7549dc52ded (patch) | |
tree | 412f2a95fbbe4f0deb57f4c14d84121f0e971dd5 /src/core/MenuScreens.cpp | |
parent | fix FireShotgun missing normalise (diff) | |
download | re3-922d06ab1fb1c2222b2738bd12cbc7549dc52ded.tar re3-922d06ab1fb1c2222b2738bd12cbc7549dc52ded.tar.gz re3-922d06ab1fb1c2222b2738bd12cbc7549dc52ded.tar.bz2 re3-922d06ab1fb1c2222b2738bd12cbc7549dc52ded.tar.lz re3-922d06ab1fb1c2222b2738bd12cbc7549dc52ded.tar.xz re3-922d06ab1fb1c2222b2738bd12cbc7549dc52ded.tar.zst re3-922d06ab1fb1c2222b2738bd12cbc7549dc52ded.zip |
Diffstat (limited to 'src/core/MenuScreens.cpp')
-rw-r--r-- | src/core/MenuScreens.cpp | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/core/MenuScreens.cpp b/src/core/MenuScreens.cpp index 533fc755..c2eadb3b 100644 --- a/src/core/MenuScreens.cpp +++ b/src/core/MenuScreens.cpp @@ -2,8 +2,10 @@ #include "Frontend.h" #ifdef PC_MENU -// If you want to add new options, please don't do that here and see CustomFrontendOptionsPopulate in re3.cpp. +// Please don't touch this file, except for bug fixing or ports. +// Check MenuScreensCustom.cpp +#ifndef CUSTOM_FRONTEND_OPTIONS CMenuScreen aScreens[MENUPAGES] = { // MENUPAGE_NONE = 0 { "", 1, MENUPAGE_DISABLED, MENUPAGE_DISABLED, 0, 0, }, @@ -434,14 +436,6 @@ CMenuScreen aScreens[MENUPAGES] = { }, #endif -#ifdef MENU_MAP - // MENUPAGE_MAP - { "FEG_MAP", 1, MENUPAGE_NONE, MENUPAGE_NONE, 5, 2, - MENUACTION_UNK110, "", SAVESLOT_NONE, MENUPAGE_NONE, // to prevent cross/enter to go back - MENUACTION_CHANGEMENU, "FEDS_TB", SAVESLOT_NONE, MENUPAGE_NONE, - }, -#endif - // MENUPAGE_UNK { "", 0, MENUPAGE_NONE, MENUPAGE_NONE, 0, 0, @@ -449,4 +443,5 @@ CMenuScreen aScreens[MENUPAGES] = { }; -#endif
\ No newline at end of file +#endif +#endif |