diff options
| author | Anghelo Carvajal <angheloalf95@gmail.com> | 2021-04-19 12:43:52 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-19 12:43:52 -0400 |
| commit | 301e17dadb5f6e9212ebcb704eb9cff75883002e (patch) | |
| tree | c1b28712d3e52f0dc5888344c28a6efc0a719a5f /ZAPD/ZCollision.cpp | |
| parent | 0d79edb291f7fdeafb2aca8edc81c4f90837977d (diff) | |
Deprecate Hint system (#116)
* remove unnecessary param
* Fix Cutscene tag
* Fix a missing declaration
* Add Path as a node
* run format
Diffstat (limited to 'ZAPD/ZCollision.cpp')
| -rw-r--r-- | ZAPD/ZCollision.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ZAPD/ZCollision.cpp b/ZAPD/ZCollision.cpp index 05c1390..1bf1bb3 100644 --- a/ZAPD/ZCollision.cpp +++ b/ZAPD/ZCollision.cpp @@ -78,8 +78,7 @@ void ZCollisionHeader::ParseRawData() } for (uint16_t i = 0; i < highestPolyType + 1; i++) - polygonTypes.push_back( - BitConverter::ToUInt64BE(data, polyTypeDefSegmentOffset + (i * 8))); + polygonTypes.push_back(BitConverter::ToUInt64BE(data, polyTypeDefSegmentOffset + (i * 8))); if (camDataAddress != 0) camData = new CameraDataList(parent, name, rawData, camDataSegmentOffset, |
