Skip to content

Commit

Permalink
Fix issue with TileData visibility being non public.
Browse files Browse the repository at this point in the history
This is mandatory for runtime map compilation.
  • Loading branch information
steffen-wilke committed Apr 2, 2020
1 parent 4a89ca9 commit 3455fa6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public TileData() {
// keep for serialization
}

TileData(List<Tile> tiles, int width, int height, String encoding, String compression) throws TmxException {
public TileData(List<Tile> tiles, int width, int height, String encoding, String compression) throws TmxException {
if (!Encoding.isValid(encoding)) {
throw new TmxException("Invalid tile data encoding '" + encoding + "'. Supported encodings are " + Encoding.CSV + " and " + Encoding.BASE64 + ".");
}
Expand Down

0 comments on commit 3455fa6

Please sign in to comment.