1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 14:24:33 +01:00

Rename static constants of repositories

This commit is contained in:
Gymnasiast
2025-03-25 23:42:27 +01:00
parent 14b881e22b
commit ad547d2d6c
3 changed files with 12 additions and 12 deletions

View File

@@ -75,16 +75,16 @@ using ObjectEntryMap = std::unordered_map<RCTObjectEntry, size_t, ObjectEntryHas
class ObjectFileIndex final : public FileIndex<ObjectRepositoryItem>
{
private:
static constexpr uint32_t MAGIC_NUMBER = 0x5844494F; // OIDX
static constexpr uint16_t VERSION = 31;
static constexpr auto PATTERN = "*.dat;*.pob;*.json;*.parkobj";
static constexpr uint32_t kMagicNumber = 0x5844494F; // OIDX
static constexpr uint16_t kVersion = 31;
static constexpr auto kPattern = "*.dat;*.pob;*.json;*.parkobj";
IObjectRepository& _objectRepository;
public:
explicit ObjectFileIndex(IObjectRepository& objectRepository, const IPlatformEnvironment& env)
: FileIndex(
"object index", MAGIC_NUMBER, VERSION, env.GetFilePath(PATHID::CACHE_OBJECTS), std::string(PATTERN),
"object index", kMagicNumber, kVersion, env.GetFilePath(PATHID::CACHE_OBJECTS), std::string(kPattern),
std::vector<std::string>{
env.GetDirectoryPath(DirBase::openrct2, DirId::objects),
env.GetDirectoryPath(DirBase::user, DirId::objects),