Compare commits

..

No commits in common. "533e2998bc97e452df3b1477a8fe237480c80b9a" and "9f3061bae3ee28e5bc043743f2a3ddfaf8d601bd" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -3,10 +3,7 @@
#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 = {0,0};
Vector2 tmp;
uint8_t overlap_x, overlap_y;
l1.x = tl1.x;
l1.y = tl1.x + sz1.x;