Browse Source

Merge branch 'f/Legacy-0-update-LotroDat' of LotRO_Legacy/Legacy_v2 into dev

Ivan Arkhipov 4 years ago
parent
commit
a9badbd2da
2 changed files with 10 additions and 6 deletions
  1. 1 1
      import/LotroDat/DatSubsystems/DatFileSystem.h
  2. 9 5
      import/LotroDat/LotroDat.h

+ 1 - 1
import/LotroDat/DatSubsystems/DatFileSystem.h

@@ -84,7 +84,7 @@ namespace LOTRO_DAT {
         std::unordered_map<long long, SubFile> subfile_init_map_;
         std::set<SubFile, SubFile::SubFileOffsetComparator> subfile_init_queue_;
     public:
-        long long patched_file_end;
+        unsigned patched_file_end;
     };
 }
 };

+ 9 - 5
import/LotroDat/LotroDat.h

@@ -1,8 +1,10 @@
-//
-// Created by Иван_Архипов on 01.11.2017.
-//
+#ifndef LOTRO_DAT_LIB
+#define LOTRO_DAT_LIB
 
-#define LOTRO_DAT_VERSION "7.2.2"
+#define LOTRO_DAT_VERSION  "8.0.0"
+#define LOTRO_DAT_VERSION_MAJOR ""
+#define LOTRO_DAT_VERSION_MINOR ""
+#define LOTRO_DAT_VERSION_PATCH ""
 
 #include "DatFile.h"
 #include "Database.h"
@@ -10,4 +12,6 @@
 #include "DatOperationResult.h"
 
 #include <yaml-cpp/yaml.h>
-#include <ZLib/zlib.h>
+#include <ZLib/zlib.h>
+
+#endif /* LOTRO_DAT_LIB */