Skip to content

Commit

Permalink
fix: comment out unused struct members
Browse files Browse the repository at this point in the history
  • Loading branch information
craftablescience committed Dec 3, 2023
1 parent cb4896c commit c4478d9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/studiomodelpp/structs/VTX.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,16 @@ struct StripGroup {
FLAG_SUPPRESS_HW_MORPH = 1 << 3,
};

int vertexCount;
int vertexOffset;
//int vertexCount;
//int vertexOffset;
std::vector<Vertex> vertices;

int indexCount;
int indexOffset;
//int indexCount;
//int indexOffset;
std::vector<unsigned short> indices;

int stripCount;
int stripOffset;
//int stripCount;
//int stripOffset;
std::vector<Strip> strips;

Flags flags;
Expand Down

0 comments on commit c4478d9

Please sign in to comment.