summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkdx <kikoodx@paranoici.org>2024-05-04 15:31:16 +0200
committerkdx <kikoodx@paranoici.org>2024-05-04 15:31:16 +0200
commit3c30311d63d88fb7f0e26b153abf2bba3ab4947e (patch)
tree937fd8289dcfe6e2308ae34951b6c319fec3e738
parent8828904a6721689753a889ecd8f6a7e20b337e97 (diff)
downloadtiled2c-main.tar.gz
use correct image offsetHEADmain
-rw-r--r--src/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c
index de7e02d..9e13c11 100644
--- a/src/main.c
+++ b/src/main.c
@@ -62,11 +62,11 @@ static int process_imagelayer(cJSON *json) {
if (process_layer(json))
return -1;
JSON_GET_STRING(json, image);
- JSON_GET(json, x);
- JSON_GET(json, y)
+ JSON_GET(json, offsetx);
+ JSON_GET(json, offsety)
- printf(".imagelayer={\"%s\",%d,%d}},", image->valuestring, x->valueint,
- y->valueint);
+ printf(".imagelayer={\"%s\",%d,%d}},", image->valuestring, offsetx->valueint,
+ offsety->valueint);
return 0;
}