Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
UltimateZoneBuilder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
UltimateZoneBuilder
Commits
bee8dd4a
Commit
bee8dd4a
authored
11 months ago
by
sphere
Browse files
Options
Downloads
Patches
Plain Diff
Increase maximum thing number to 65535 (from 32767)
parent
20254791
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/Core/IO/UniversalMapSetIO.cs
+1
-1
1 addition, 1 deletion
Source/Core/IO/UniversalMapSetIO.cs
with
1 addition
and
1 deletion
Source/Core/IO/UniversalMapSetIO.cs
+
1
−
1
View file @
bee8dd4a
...
@@ -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
u
short
.
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment