summaryrefslogtreecommitdiffstats
path: root/src/resources/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/map.h')
-rw-r--r--src/resources/map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/map.h b/src/resources/map.h
index 6d1d789..267eb30 100644
--- a/src/resources/map.h
+++ b/src/resources/map.h
@@ -32,7 +32,7 @@ struct tileset {
};
struct map_tileset {
struct tileset *tileset;
- int firstgid;
+ Uint32 firstgid;
struct map_tileset *next;
};
struct layer {
@@ -92,12 +92,12 @@ struct map {
struct map_collision *collisions;
struct map_exit *map_exits_head;
struct map_exit *map_exits_tail;
- int cur_ts_firstgid;
+ Uint32 cur_ts_firstgid;
};
struct map *map_get(const char *path);
void map_free(struct map *map);
-void map_add_tileset(struct map *m, struct tileset *t, int firstgid);
+void map_add_tileset(struct map *m, struct tileset *t, Uint32 firstgid);
struct layer *map_get_layer(struct map *m, const char *name);
void map_add_exit(struct map *m, struct map_exit *e);