mirror of https://github.com/AxioDL/metaforce.git
Merge pull request #249 from lioncash/list
CObjectList: Make use of std::array where applicable
This commit is contained in:
commit
93be0fbc72
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <array>
|
||||
|
||||
#include "Runtime/RetroTypes.hpp"
|
||||
#include "Runtime/World/CEntity.hpp"
|
||||
|
||||
|
@ -25,7 +27,7 @@ class CObjectList {
|
|||
s16 next = -1;
|
||||
s16 prev = -1;
|
||||
};
|
||||
SObjectListEntry x0_list[1024]; // was an rstl::prereserved_vector
|
||||
std::array<SObjectListEntry, 1024> x0_list; // was an rstl::prereserved_vector
|
||||
EGameObjectList x2004_listEnum;
|
||||
s16 x2008_firstId = -1;
|
||||
u16 x200a_count = 0;
|
||||
|
|
Loading…
Reference in New Issue