From 66850d2dbc9798619159688dcba0cc912247ac02 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Wed, 1 Feb 2012 22:22:33 +0100 Subject: Clear tile flags from the gid before further processing Better to show non-rotated/flipped tiles than no tile at all. This also fixes interpretation of collision tiles that happen to be flipped. Also interpret the gid as an unsigned number, since that's how they are written in the TMX file since the introduction of these flags. Reviewed-by: Yohann Ferreira --- src/utils/xml.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils') diff --git a/src/utils/xml.cpp b/src/utils/xml.cpp index a965e0d7..839479d7 100644 --- a/src/utils/xml.cpp +++ b/src/utils/xml.cpp @@ -99,7 +99,7 @@ namespace XML xmlChar *prop = xmlGetProp(node, BAD_CAST name); if (prop) { - ret = atoi((char*)prop); + ret = atol((char*)prop); xmlFree(prop); } -- cgit v1.2.3-70-g09d2