diff options
-rw-r--r-- | src/resources/map.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/resources/map.c b/src/resources/map.c index 5e30aa2..67b00cb 100644 --- a/src/resources/map.c +++ b/src/resources/map.c @@ -440,6 +440,9 @@ tmx_tileset_el_start(void *pv, const char *name, const char **attr) if (xml_check_tag(name, "tileoffset")) { /* Not used by engine. */ xml_node_push(p, NULL, tmx_unused_start, tmx_unused_end, NULL); + } else if (xml_check_tag(name, "properties")) { + /* Not used by engine. */ + xml_node_push(p, NULL, tmx_unused_start, tmx_unused_end, NULL); } else if (xml_check_tag(name, "image")) { xml_get_int_attr(p, attr, "width", &ts->width, 1); xml_get_int_attr(p, attr, "height", &ts->height, 1); |