change VertexRef elements to unsigned values to fix compile warnings
This commit is contained in:
parent
c5c76f0033
commit
01a90fdef7
6
WFObj.h
6
WFObj.h
@ -92,9 +92,9 @@ protected:
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
VertexRef() : vertex(0), texture(0), normal(0) {}
|
VertexRef() : vertex(0), texture(0), normal(0) {}
|
||||||
int vertex;
|
size_t vertex;
|
||||||
int texture;
|
size_t texture;
|
||||||
int normal;
|
size_t normal;
|
||||||
bool operator<(const VertexRef & other) const;
|
bool operator<(const VertexRef & other) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user