diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-09-27 19:21:16 +0300 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-09-27 19:22:21 +0300 |
commit | 70aac0f460a9e57956de00ae5d84d8bb4bf4643c (patch) | |
tree | 92e3d8073b6e9e4ad8ae3ee7d8a2460c7e079cca /src/core/Frontend_PS2.h | |
parent | 9b7642454006f4c6b93d57297f88b2899e3f0077 (diff) |
Fixes: PS2/PS2-like menu, Hud, new sliding text found
Diffstat (limited to 'src/core/Frontend_PS2.h')
-rw-r--r-- | src/core/Frontend_PS2.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/Frontend_PS2.h b/src/core/Frontend_PS2.h index 2f226dc3..c1e42291 100644 --- a/src/core/Frontend_PS2.h +++ b/src/core/Frontend_PS2.h @@ -160,7 +160,30 @@ public: static int32 m_PrefsLanguage; static CONTRCONFIG m_PrefsControllerConfig; static bool m_PrefsUseVibration; +#ifdef NO_ISLAND_LOADING + enum + { + ISLAND_LOADING_LOW = 0, + ISLAND_LOADING_MEDIUM, + ISLAND_LOADING_HIGH + }; + + static int8 m_DisplayIslandLoading; + static int8 m_PrefsIslandLoading; +#define ISLAND_LOADING_IS(p) if (CMenuManager::m_PrefsIslandLoading == CMenuManager::ISLAND_LOADING_##p) +#define ISLAND_LOADING_ISNT(p) if (CMenuManager::m_PrefsIslandLoading != CMenuManager::ISLAND_LOADING_##p) +#else +#define ISLAND_LOADING_IS(p) +#define ISLAND_LOADING_ISNT(p) +#endif +#ifdef CUTSCENE_BORDERS_SWITCH + static bool m_PrefsCutsceneBorders; +#endif +#ifdef MULTISAMPLING + static int8 m_nPrefsMSAALevel; + static int8 m_nDisplayMSAALevel; +#endif #ifdef GTA_PC bool m_bQuitGameNoCD; |