1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Rename kLlCsg1DatFileSize to kLLCsg1DatFileSize

This commit is contained in:
Harry-Hopkinson
2024-06-06 10:31:32 +00:00
parent 1b8e427b6f
commit c1788bd782
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::kLlCsg1DatFileSize
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 kLlCsg1DatFileSize = 41402869;
constexpr uint32_t kLLCsg1DatFileSize = 41402869;
constexpr uint32_t kNumTerrainSurfaces = 16;
constexpr uint32_t kNumTerrainEdges = 15;
} // namespace RCT1::Limits