Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ZAPD/OtherStructs/SkinLimbStructs.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ class SkinAnimatedLimbData : public ZResource
size_t GetRawDataSize() const override;

public:
uint16_t totalVtxCount;
uint16_t totalVtxCount = 0;
uint16_t limbModifCount; // Length of limbModifications
segptr_t limbModifications; // SkinLimbModif*
segptr_t dlist; // Gfx*
segptr_t dlist = SEGMENTED_NULL; // Gfx*

std::vector<SkinLimbModif> limbModifications_arr;
// ZDisplayList* unk_8_dlist = nullptr;
Expand Down
6 changes: 3 additions & 3 deletions ZAPD/ZRoom/Commands/SetMesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class RoomShapeDListsEntry : public ZResource
class RoomShapeImageMultiBgEntry : public ZResource
{
public:
uint16_t unk_00;
uint8_t id;
uint16_t unk_00 = 0;
uint8_t id = 0;
segptr_t source;
uint32_t unk_0C;
uint32_t tlut;
Expand Down Expand Up @@ -141,7 +141,7 @@ class RoomShapeCullable : public PolygonTypeBase
class SetMesh : public ZRoomCommand
{
public:
uint8_t data;
uint8_t data = 0;
uint8_t meshHeaderType;
std::shared_ptr<PolygonTypeBase> polyType;

Expand Down