Compare commits

...

2 Commits

Author SHA1 Message Date
En Yi 533e2998bc Include missing headers in rres packer 2023-10-08 12:07:17 +08:00
En Yi de29201a41 Fix uninitialised overlap value 2023-10-08 12:07:04 +08:00
2 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,10 @@
#define RRES_IMPLEMENTATION
#include "rres.h" // Required to read rres data chunks
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
// Load a continuous data buffer from rresResourceChunkData struct
static unsigned char *LoadDataBuffer(rresResourceChunkData data, unsigned int rawSize)

View File

@ -23,7 +23,7 @@ uint8_t find_AABB_overlap(const Vector2 tl1, const Vector2 sz1, const Vector2 tl
// Note that we include one extra pixel for checking
// This avoid overlapping on the border
Vector2 l1, l2;
Vector2 tmp;
Vector2 tmp = {0,0};
uint8_t overlap_x, overlap_y;
l1.x = tl1.x;
l1.y = tl1.x + sz1.x;