Skip to content

Commit

Permalink
Fix the code contains unhandled character (#1469)
Browse files Browse the repository at this point in the history
It looks like there are some non-ASCII characters present in the code. Specifically, the character "–" in the line:

Signed-off-by: zengwei2000 <102871671+zengwei2000@users.noreply.github.com>
  • Loading branch information
zengwei00 authored and cary-ilm committed Jul 31, 2023
1 parent 74a2b53 commit d3034b2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions docs/src/writeTiledRgbaRIP1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ writeTiledRgbaRIP1 (const char fileName[],
{
generatePixels (pixels, width, height, xLevel, yLevel);

out.writeTiles (0, out.numXTiles (xLevel) - 1,
0, out.numYTiles (yLevel) – 1,
xLevel,
yLevel);
out.writeTiles (
0,
out.numXTiles (xLevel) - 1,
0,
out.numYTiles (yLevel) - 1,
xLevel,
yLevel);
}
}
}

0 comments on commit d3034b2

Please sign in to comment.