2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 06:27:43 +00:00

CMetroidAreaCollider: Correct g_DupVertexList and g_DupEdgeList size

This commit is contained in:
2020-09-27 03:04:30 -04:00
parent cfe1507fc7
commit 9a7bceb637
2 changed files with 4 additions and 4 deletions

View File

@@ -93,8 +93,8 @@ class CMetroidAreaCollider {
static u32 g_TrianglesProcessed;
static u32 g_DupTrianglesProcessed;
static u16 g_DupPrimitiveCheckCount;
static std::array<u16, 0x5000> g_DupVertexList;
static std::array<u16, 0xC000> g_DupEdgeList;
static std::array<u16, 0x2800> g_DupVertexList;
static std::array<u16, 0x6000> g_DupEdgeList;
static std::array<u16, 0x4000> g_DupTriangleList;
static bool AABoxCollisionCheckBoolean_Internal(const CAreaOctTree::Node& node, const CBooleanAABoxAreaCache& cache);
static bool AABoxCollisionCheck_Internal(const CAreaOctTree::Node& node, const CAABoxAreaCache& cache);