Fixed an accuracy problem that caused incorrect drawings near the edge of the grid.

This commit is contained in:
codeimp 2010-08-13 18:19:49 +00:00
parent f070f6c867
commit e7d011068e

View file

@ -36,7 +36,7 @@ namespace CodeImp.DoomBuilder.Map
{
#region ================== Constants
public const float SIDE_POINT_DISTANCE = 0.001f;
public const float SIDE_POINT_DISTANCE = 0.01f;
public const int NUM_ARGS = 5;
#endregion