Skip to content

Commit

Permalink
int to byte
Browse files Browse the repository at this point in the history
  • Loading branch information
ikpil committed Jul 3, 2024
1 parent a282a80 commit 355a08e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DotRecast.Detour.TileCache/DtTileCacheBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ namespace DotRecast.Detour.TileCache
{
public static class DtTileCacheBuilder
{
public const int DT_TILECACHE_NULL_AREA = 0;
public const int DT_TILECACHE_WALKABLE_AREA = 63;
public const byte DT_TILECACHE_NULL_AREA = 0;
public const byte DT_TILECACHE_WALKABLE_AREA = 63;
public const int DT_TILECACHE_NULL_IDX = 0xffff;

private static readonly int[] DirOffsetX = { -1, 0, 1, 0, };
Expand Down

0 comments on commit 355a08e

Please sign in to comment.