Fix remaining uint8_t types

This commit is contained in:
hasufell 2014-05-08 17:38:22 +02:00
parent d3430d36fd
commit 2c1238d3be
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@
*/
#define STD_FILE_BUF 4096
typedef unsigned int** FACE;
typedef uint32_t** FACE;
typedef struct HE_edge HE_edge;
typedef struct HE_vert HE_vert;
@ -103,15 +103,15 @@ struct HE_obj {
/**
* Count of edges.
*/
uint8_t ec;
uint32_t ec;
/**
* Count of vertices.
*/
uint8_t vc;
uint32_t vc;
/**
* Count of faces.
*/
uint8_t fc;
uint32_t fc;
};