diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-01-08 19:24:43 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-01-08 19:24:43 +0100 |
commit | 4debd89d8e3d0d7a442594dab0aa1cb61e7ae8e3 (patch) | |
tree | 0f796734c22fc26264f6d032af96a9cdedbba150 /src/core | |
parent | Enable trains (diff) | |
parent | Add multisampling (diff) | |
download | re3-4debd89d8e3d0d7a442594dab0aa1cb61e7ae8e3.tar re3-4debd89d8e3d0d7a442594dab0aa1cb61e7ae8e3.tar.gz re3-4debd89d8e3d0d7a442594dab0aa1cb61e7ae8e3.tar.bz2 re3-4debd89d8e3d0d7a442594dab0aa1cb61e7ae8e3.tar.lz re3-4debd89d8e3d0d7a442594dab0aa1cb61e7ae8e3.tar.xz re3-4debd89d8e3d0d7a442594dab0aa1cb61e7ae8e3.tar.zst re3-4debd89d8e3d0d7a442594dab0aa1cb61e7ae8e3.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/Frontend.h | 4 | ||||
-rw-r--r-- | src/core/config.h | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/core/Frontend.h b/src/core/Frontend.h index b27cccb5..4a812b05 100644 --- a/src/core/Frontend.h +++ b/src/core/Frontend.h @@ -661,8 +661,8 @@ public: int32 m_nSelectedScreenMode; #endif #ifdef MULTISAMPLING - static int8 m_nPrefsMSAALevel; - static int8 m_nDisplayMSAALevel; + int8 m_nPrefsMSAALevel; + int8 m_nDisplayMSAALevel; #endif enum LANGUAGE diff --git a/src/core/config.h b/src/core/config.h index d4da96e6..4aaeb3c1 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -314,7 +314,7 @@ enum Config { # define GRAPHICS_MENU_OPTIONS // otherwise Display settings will be scrollable //# define NO_ISLAND_LOADING // disable loadscreen between islands via loading all island data at once, consumes more memory and CPU # define CUTSCENE_BORDERS_SWITCH -//# define MULTISAMPLING // adds MSAA option +# define MULTISAMPLING // adds MSAA option # define INVERT_LOOK_FOR_PAD // enable the hidden option # endif #endif @@ -384,7 +384,6 @@ static_assert(false, "SUPPORT_XBOX_SCRIPT and SUPPORT_MOBILE_SCRIPT are mutually #ifdef LIBRW // these are not supported with librw yet -# undef MULTISAMPLING #endif // IMG #define BIG_IMG // allows to read larger img files |