Skip to content

Commit

Permalink
Fixed start tile export.
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeniy-polyakov committed Oct 11, 2016
1 parent f7f9b48 commit fe767f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArcanumTextureSlicer/ArcanumTextureSlicer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static void Main(string[] args)
{
for (var j = 0; j < m; j++)
{
if (i == 0 && j == 0 && !initTileCenter.IsEmpty)
if (i == 0 && j == 0 && initTileCenter.X == initTileX && initTileCenter.Y == initTileY)
{
// Do not export start tile
continue;
Expand Down

0 comments on commit fe767f3

Please sign in to comment.