diff options
author | withmorten <morten.with@gmail.com> | 2021-07-05 18:07:26 +0200 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2021-07-10 17:30:27 +0200 |
commit | 011aafa0435d2c60dc4e0769ed4c93ed1761e3f6 (patch) | |
tree | 4f6c78844f547651730f82043b28662a9b7239e9 /src/core/config.h | |
parent | readme: fix lto option (diff) | |
download | re3-011aafa0435d2c60dc4e0769ed4c93ed1761e3f6.tar re3-011aafa0435d2c60dc4e0769ed4c93ed1761e3f6.tar.gz re3-011aafa0435d2c60dc4e0769ed4c93ed1761e3f6.tar.bz2 re3-011aafa0435d2c60dc4e0769ed4c93ed1761e3f6.tar.lz re3-011aafa0435d2c60dc4e0769ed4c93ed1761e3f6.tar.xz re3-011aafa0435d2c60dc4e0769ed4c93ed1761e3f6.tar.zst re3-011aafa0435d2c60dc4e0769ed4c93ed1761e3f6.zip |
Diffstat (limited to 'src/core/config.h')
-rw-r--r-- | src/core/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/config.h b/src/core/config.h index c9339b74..00d7a938 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -237,7 +237,8 @@ enum Config { #define FIX_BUGS // fixes bugs that we've came across during reversing. You can undefine this only on release builds. #define MORE_LANGUAGES // Add more translations to the game -#define COMPATIBLE_SAVES // this allows changing structs while keeping saves compatible +#define COMPATIBLE_SAVES // this allows changing structs while keeping saves compatible, and keeps saves compatible between platforms +#define FIX_INCOMPATIBLE_SAVES // try to fix incompatible saves, requires COMPATIBLE_SAVES #define LOAD_INI_SETTINGS // as the name suggests. fundamental for CUSTOM_FRONTEND_OPTIONS #define NO_MOVIES // add option to disable intro videos @@ -464,6 +465,7 @@ enum Config { #define THIS_IS_STUPID #undef MORE_LANGUAGES #undef COMPATIBLE_SAVES +#undef FIX_INCOMPATIBLE_SAVES #undef LOAD_INI_SETTINGS #undef ASPECT_RATIO_SCALE |