summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c
index 9e13c11..ad31828 100644
--- a/src/main.c
+++ b/src/main.c
@@ -114,10 +114,11 @@ static int process_object(cJSON *json) {
JSON_GET(json, height);
JSON_GET(json, rotation);
JSON_GET(json, visible);
- printf("{\"%s\",\"%s\",%d,%d,%d,%d,%d,%d,%f,%d", name->valuestring,
- type->valuestring, id->valueint, tile ? tile->valueint : 0,
- x->valueint, y->valueint, width->valueint, height->valueint,
- rotation->valuedouble, cJSON_IsTrue(visible));
+ printf("{\"%s\",\"%s\",%d,%u,%d,%d,%d,%d,%f,%d", name->valuestring,
+ type->valuestring, id->valueint,
+ tile ? (unsigned)tile->valuedouble : 0, x->valueint, y->valueint,
+ width->valueint, height->valueint, rotation->valuedouble,
+ cJSON_IsTrue(visible));
cJSON *properties = cJSON_GetObjectItem(json, "properties");
if (!cJSON_IsArray(properties) || cJSON_GetArraySize(properties) == 0)