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

Rename LL_CSG1_DAT_FileSize to kLlCsg1DatFileSize

This commit is contained in:
Harry-Hopkinson
2024-06-05 20:34:32 +00:00
committed by Harry Hopkinson
parent e12c18a1f4
commit 9c57a30ff3
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ bool RCT1DataPresentAtLocation(u8string_view path)
bool CsgIsUsable(const Gx& csg)
{
return csg.header.total_size == RCT1::Limits::LL_CSG1_DAT_FileSize
return csg.header.total_size == RCT1::Limits::kLlCsg1DatFileSize
&& csg.header.num_entries == RCT1::Limits::kNumLlCsgEntries;
}

View File

@@ -22,7 +22,7 @@ namespace RCT1::Limits
constexpr uint8_t kMaxBanners = 100;
constexpr int32_t kCoordsZStep = 4;
constexpr uint32_t kNumLlCsgEntries = 69917;
constexpr uint32_t LL_CSG1_DAT_FileSize = 41402869;
constexpr uint32_t kLlCsg1DatFileSize = 41402869;
constexpr uint32_t NumTerrainSurfaces = 16;
constexpr uint32_t NumTerrainEdges = 15;
} // namespace RCT1::Limits