Skip to content
Snippets Groups Projects
Commit bee8dd4a authored by sphere's avatar sphere
Browse files

Increase maximum thing number to 65535 (from 32767)

parent 20254791
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ namespace CodeImp.DoomBuilder.IO ...@@ -91,7 +91,7 @@ namespace CodeImp.DoomBuilder.IO
public override int MinEffect { get { return int.MinValue; } } public override int MinEffect { get { return int.MinValue; } }
public override int MaxBrightness { get { return int.MaxValue; } } public override int MaxBrightness { get { return int.MaxValue; } }
public override int MinBrightness { get { return int.MinValue; } } public override int MinBrightness { get { return int.MinValue; } }
public override int MaxThingType { get { return short.MaxValue; } } //mxd. Editor numbers must be in [1 .. 32767] range public override int MaxThingType { get { return ushort.MaxValue; } } //mxd. Editor numbers must be in [1 .. 65535] range
public override int MinThingType { get { return 1; } } //mxd public override int MinThingType { get { return 1; } } //mxd
public override float MaxCoordinate { get { return short.MaxValue; } } //mxd. UDMF maps are still bounded to -32768 .. 32767 range public override float MaxCoordinate { get { return short.MaxValue; } } //mxd. UDMF maps are still bounded to -32768 .. 32767 range
public override float MinCoordinate { get { return short.MinValue; } } //mxd public override float MinCoordinate { get { return short.MinValue; } } //mxd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment