diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-01-27 23:16:38 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-01-27 23:16:38 +0100 |
commit | c6b6e9d0df11d408a14e7ea7bbe114e4726e23b8 (patch) | |
tree | b7badc730f4d775b0ede2555faf562770b71580b /src/save/GenericGameStorage.h | |
parent | fix var names (diff) | |
download | re3-c6b6e9d0df11d408a14e7ea7bbe114e4726e23b8.tar re3-c6b6e9d0df11d408a14e7ea7bbe114e4726e23b8.tar.gz re3-c6b6e9d0df11d408a14e7ea7bbe114e4726e23b8.tar.bz2 re3-c6b6e9d0df11d408a14e7ea7bbe114e4726e23b8.tar.lz re3-c6b6e9d0df11d408a14e7ea7bbe114e4726e23b8.tar.xz re3-c6b6e9d0df11d408a14e7ea7bbe114e4726e23b8.tar.zst re3-c6b6e9d0df11d408a14e7ea7bbe114e4726e23b8.zip |
Diffstat (limited to 'src/save/GenericGameStorage.h')
-rw-r--r-- | src/save/GenericGameStorage.h | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/src/save/GenericGameStorage.h b/src/save/GenericGameStorage.h index 86861e5e..b8be1e79 100644 --- a/src/save/GenericGameStorage.h +++ b/src/save/GenericGameStorage.h @@ -2,23 +2,6 @@ #include "PCSave.h"
-class CDate
-{
-public:
- int m_nSecond;
- int m_nMinute;
- int m_nHour;
- int m_nDay;
- int m_nMonth;
- int m_nYear;
-
- CDate();
- bool operator>(const CDate &right);
- bool operator<(const CDate &right);
- bool operator==(const CDate &right);
- void PopulateDateFields(int8 &second, int8 &minute, int8 &hour, int8 &day, int8 &month, int16 year);
-};
-
#define SLOT_COUNT (8)
bool GenericSave(int file);
@@ -38,7 +21,7 @@ bool CheckDataNotCorrupt(int32 slot, char *name); bool RestoreForStartLoad();
int align4bytes(int32 size);
-extern CDate& CompileDateAndTime;
+extern class CDate& CompileDateAndTime;
extern char (&DefaultPCSaveFileName)[260];
extern char (&ValidSaveName)[260];
|