diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-05-02 23:15:28 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-05-02 23:15:28 +0200 |
commit | 6a40c03442a3707561203f7fc2403548b3c64a83 (patch) | |
tree | 937e85bb8a70aac1838b8cf0c98474b3cf33f5a1 /src/save/GenericGameStorage.cpp | |
parent | Merge pull request #504 from Sergeanur/PadInputSwitch (diff) | |
download | re3-6a40c03442a3707561203f7fc2403548b3c64a83.tar re3-6a40c03442a3707561203f7fc2403548b3c64a83.tar.gz re3-6a40c03442a3707561203f7fc2403548b3c64a83.tar.bz2 re3-6a40c03442a3707561203f7fc2403548b3c64a83.tar.lz re3-6a40c03442a3707561203f7fc2403548b3c64a83.tar.xz re3-6a40c03442a3707561203f7fc2403548b3c64a83.tar.zst re3-6a40c03442a3707561203f7fc2403548b3c64a83.zip |
Diffstat (limited to 'src/save/GenericGameStorage.cpp')
-rw-r--r-- | src/save/GenericGameStorage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/save/GenericGameStorage.cpp b/src/save/GenericGameStorage.cpp index 3e25ba42..df34b3b5 100644 --- a/src/save/GenericGameStorage.cpp +++ b/src/save/GenericGameStorage.cpp @@ -164,7 +164,7 @@ GenericSave(int file) WriteDataToBufferPointer(buf, CompileDateAndTime.m_nMonth); WriteDataToBufferPointer(buf, CompileDateAndTime.m_nYear); WriteDataToBufferPointer(buf, CWeather::WeatherTypeInList); -#ifdef FIX_BUGS +#ifdef COMPATIBLE_SAVES // converted to float for compatibility with original format // TODO: maybe remove this? not really gonna break anything vital float f = TheCamera.CarZoomIndicator; @@ -283,7 +283,7 @@ GenericLoad() ReadDataFromBufferPointer(buf, CompileDateAndTime.m_nMonth); ReadDataFromBufferPointer(buf, CompileDateAndTime.m_nYear); ReadDataFromBufferPointer(buf, CWeather::WeatherTypeInList); -#ifdef FIX_BUGS +#ifdef COMPATIBLE_SAVES // converted to float for compatibility with original format // TODO: maybe remove this? not really gonna break anything vital float f; |