Fix CMapArea vertex loop

This commit is contained in:
Phillip Stephens 2016-07-30 19:19:44 -07:00
parent 4541234706
commit f4694e3231
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ void CMapArea::PostConstruct()
u8* tmp = x3c_vertexStart;
for (u32 i = 0 ; i<(x2c_vertexCount*3) ; ++i)
{
u32* fl = reinterpret_cast<u32*>(x3c_vertexStart + i);
u32* fl = reinterpret_cast<u32*>(tmp);
*fl = SBIG(*fl);
tmp += 4;
}