Lowered the minimum segment length for the Draw Curve tool to 1

This commit is contained in:
MascaraSnake 2016-01-10 22:38:52 +01:00
parent b27073aa40
commit 6388c93034
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
private readonly HintLabel hintlabel;
private Curve curve;
private static int segmentLength = 32;
private const int MIN_SEGMENT_LENGTH = 16;
private const int MIN_SEGMENT_LENGTH = 1;
private const int MAX_SEGMENT_LENGTH = 4096; //just some arbitrary number
//interface