CMapWorldInfo: Actually add the mutable specifiers

Note to self, actually stage changes before pushing.
This commit is contained in:
Lioncash 2020-04-05 06:36:15 -04:00
parent 42c560b9df
commit 039e43c511
1 changed files with 4 additions and 4 deletions

View File

@ -9,10 +9,10 @@ namespace urde {
class CSaveWorld;
class CMapWorldInfo {
u32 x0_visitedAreasAllocated = 0;
std::vector<u32> x4_visitedAreas;
u32 x14_mappedAreasAllocated = 0;
std::vector<u32> x18_mappedAreas;
mutable u32 x0_visitedAreasAllocated = 0;
mutable std::vector<u32> x4_visitedAreas;
mutable u32 x14_mappedAreasAllocated = 0;
mutable std::vector<u32> x18_mappedAreas;
std::map<TEditorId, bool> x28_visitedDoors;
bool x38_mapStationUsed = false;