code: hotfix

isolation_bkp/dynres
Dominik Madarász 2021-01-18 14:47:03 +01:00
parent a2604b08a5
commit fb7423e4b1
1 changed files with 1 additions and 3 deletions

View File

@ -2,15 +2,13 @@
#include "flecs/flecs.h" #include "flecs/flecs.h"
#include "flecs/flecs_meta.h" #include "flecs/flecs_meta.h"
#define DRAWABLE_MAX_FILENAME 80
ECS_STRUCT(Vector2D, { ECS_STRUCT(Vector2D, {
int16_t x; int16_t x;
int16_t y; int16_t y;
}); });
ECS_STRUCT(Drawable, { ECS_STRUCT(Drawable, {
char filename[DRAWABLE_MAX_FILENAME]; char filename[80];
}); });
typedef Vector2D Chunk; typedef Vector2D Chunk;