Skip to content
Open
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
6 changes: 3 additions & 3 deletions engine/cmodel_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ struct cbrushside_t
unsigned short bBevel; // is the side a bevel plane?
};

#define NUMSIDES_BOXBRUSH 0xFFFF
#define NUMSIDES_BOXBRUSH -1

struct cbrush_t
{
int contents;
unsigned short numsides;
unsigned short firstbrushside;
int numsides;
int firstbrushside;

inline int GetBox() const { return firstbrushside; }
// dimhotepus: int -> unsigned short
Expand Down