Skip to content

Commit

Permalink
Merge pull request Stephane-D#289 from cidoku/cidoku-patch-1
Browse files Browse the repository at this point in the history
Fix rescomp TMX map priority parsing
  • Loading branch information
Stephane-D committed Jul 31, 2023
2 parents 5965155 + ce68951 commit d84d456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/rescomp/src/sgdk/rescomp/type/TMX.java
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public TMXMap(String file, String layerName) throws Exception
// get low priority map data in mapData1
mapData1 = getMapData(lowPriorityLayer, w, h, file);
// get high priority map data in mapData2
mapData2 = getMapData(lowPriorityLayer, w, h, file);
mapData2 = getMapData(highPriorityLayer, w, h, file);
}

final Set<TSXTileset> usedTilesetsSet = new HashSet<>();
Expand Down

0 comments on commit d84d456

Please sign in to comment.