forked from bit/DotRecastNetSim
typo
This commit is contained in:
parent
1104e2276e
commit
8ed6a86113
|
@ -27,7 +27,7 @@ namespace DotRecast.Detour.TileCache.Io.Compress
|
||||||
* This is refactored code of <a href="https://code.google.com/p/jfastlz/">jfastlz</a>
|
* This is refactored code of <a href="https://code.google.com/p/jfastlz/">jfastlz</a>
|
||||||
* library written by William Kinney.
|
* library written by William Kinney.
|
||||||
*/
|
*/
|
||||||
public class FastLz
|
public static class FastLz
|
||||||
{
|
{
|
||||||
private const int MAX_DISTANCE = 8191;
|
private const int MAX_DISTANCE = 8191;
|
||||||
private const int MAX_FARDISTANCE = 65535 + MAX_DISTANCE - 1;
|
private const int MAX_FARDISTANCE = 65535 + MAX_DISTANCE - 1;
|
||||||
|
@ -689,9 +689,5 @@ namespace DotRecast.Detour.TileCache.Io.Compress
|
||||||
|
|
||||||
return (data[offset + 1] & 0xff) << 8 | data[offset] & 0xff;
|
return (data[offset + 1] & 0xff) << 8 | data[offset] & 0xff;
|
||||||
}
|
}
|
||||||
|
|
||||||
private FastLz()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue