Skip to content

Commit

Permalink
Increase .obj parser limits
Browse files Browse the repository at this point in the history
  • Loading branch information
luboslenco committed Aug 21, 2023
1 parent 29beb3f commit 66f66f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/iron/io_obj.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ static obj_part_t *part = NULL;
static array_f32_t pos_temp;
static array_f32_t uv_temp;
static array_f32_t nor_temp;
static uint32_t va[60];
static uint32_t ua[60];
static uint32_t na[60];
static uint32_t va[128];
static uint32_t ua[128];
static uint32_t na[128];
static int vi = 0;
static int ui = 0;
static int ni = 0;
static uint8_t buf[64];
static uint8_t buf[128];
static uint8_t str[256];

static int vind_off = 0;
Expand Down

0 comments on commit 66f66f6

Please sign in to comment.