mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-26 17:02:28 +01:00
Fix for incorrect parameter ordering of call to _decode_base64_data.
This commit is contained in:
@@ -105,7 +105,7 @@ def _decode_data(
|
||||
if encoding == "csv":
|
||||
return _decode_csv_data(data_text)
|
||||
|
||||
return _decode_base64_data(data_text, compression, layer_width)
|
||||
return _decode_base64_data(data_text, layer_width, compression)
|
||||
|
||||
|
||||
def _parse_data(
|
||||
|
||||
Reference in New Issue
Block a user