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

GCC compile fixes

This commit is contained in:
Jack Andersen
2017-03-10 20:32:53 -10:00
parent c407e75943
commit 22989ff47c
2 changed files with 4 additions and 4 deletions

View File

@@ -561,9 +561,9 @@ bool MREA::CookPath(const hecl::ProjectPath& outPath,
path.unkStructs.emplace_back();
PATH::UnknownStruct& s = path.unkStructs.back();
s.unk1 = 1;
s.unk2[0] = {FLT_MAX, FLT_MAX, FLT_MAX};
s.unk2[1] = {FLT_MIN, FLT_MIN, FLT_MIN};
s.unk2[2] = {0.f, 0.f, 0.f};
s.unk2[0] = atVec3f{FLT_MAX, FLT_MAX, FLT_MAX};
s.unk2[1] = atVec3f{FLT_MIN, FLT_MIN, FLT_MIN};
s.unk2[2] = atVec3f{0.f, 0.f, 0.f};
for (int i=0 ; i<8 ; ++i)
s.unk3[i] = ~0;
s.unk4 = 0;