Change common parts of model API to use signed integers rather than unsigned for less casting

This commit is contained in:
Daniel Cronqvist 2025-04-24 22:29:24 +02:00
parent de41fb5508
commit ae2e70a223
23 changed files with 102 additions and 102 deletions

View file

@ -181,8 +181,8 @@ public partial class TestData
{
Format = ImageFormat.Png,
Source = "tileset.png",
Width = fileExt == "tmx" ? 256u : 0, // Currently, json format does not
Height = fileExt == "tmx" ? 96u : 0 // include image dimensions in image layer https://github.com/mapeditor/tiled/issues/4028
Width = fileExt == "tmx" ? 256 : 0, // Currently, json format does not
Height = fileExt == "tmx" ? 96 : 0 // include image dimensions in image layer https://github.com/mapeditor/tiled/issues/4028
},
RepeatX = true
},