diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-27 16:26:08 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-27 20:19:00 +0100 |
commit | ab939e059b4263fec4e26425bce6a12ecf88d2e6 (patch) | |
tree | 72be40877a6cb4e37962552bf3df3c88c9860974 /src/core/config.h | |
parent | fix fix (diff) | |
download | re3-ab939e059b4263fec4e26425bce6a12ecf88d2e6.tar re3-ab939e059b4263fec4e26425bce6a12ecf88d2e6.tar.gz re3-ab939e059b4263fec4e26425bce6a12ecf88d2e6.tar.bz2 re3-ab939e059b4263fec4e26425bce6a12ecf88d2e6.tar.lz re3-ab939e059b4263fec4e26425bce6a12ecf88d2e6.tar.xz re3-ab939e059b4263fec4e26425bce6a12ecf88d2e6.tar.zst re3-ab939e059b4263fec4e26425bce6a12ecf88d2e6.zip |
Diffstat (limited to 'src/core/config.h')
-rw-r--r-- | src/core/config.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/core/config.h b/src/core/config.h index 7e039ef6..329d70b9 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -393,11 +393,12 @@ static_assert(false, "SUPPORT_XBOX_SCRIPT and SUPPORT_MOBILE_SCRIPT are mutually #endif -#ifdef LIBRW -// these are not supported with librw yet +// Streaming +#if !defined(_WIN32) && !defined(__SWITCH__) + //#define ONE_THREAD_PER_CHANNEL // Don't use if you're not on SSD/Flash - also not utilized too much right now(see commented LoadAllRequestedModels in Streaming.cpp) + #define FLUSHABLE_STREAMING // Make it possible to interrupt reading when processing file isn't needed anymore. #endif -// IMG -#define BIG_IMG // allows to read larger img files +#define BIG_IMG // Not complete - allows to read larger img files //#define SQUEEZE_PERFORMANCE #ifdef SQUEEZE_PERFORMANCE @@ -405,6 +406,8 @@ static_assert(false, "SUPPORT_XBOX_SCRIPT and SUPPORT_MOBILE_SCRIPT are mutually #undef NO_ISLAND_LOADING #endif +// ------- + #if defined __MWERKS__ || defined VANILLA_DEFINES #define FINAL #undef CHATTYSPLASH |