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
e70c4368
Commit
e70c4368
authored
9 years ago
by
MaxED
Browse files
Options
Downloads
Patches
Plain Diff
Fixed: DECORATE includes were incorrectly loaded from WADs.
parent
80fc47f2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/Core/Data/WADReader.cs
+10
-3
10 additions, 3 deletions
Source/Core/Data/WADReader.cs
with
10 additions
and
3 deletions
Source/Core/Data/WADReader.cs
+
10
−
3
View file @
e70c4368
...
...
@@ -861,11 +861,18 @@ namespace CodeImp.DoomBuilder.Data
#
region
==================
Decorate
,
Gldefs
,
Mapinfo
,
etc
...
// This finds and returns
a sprite
stream
// This finds and returns
DECORATE
stream
s
public
override
IEnumerable
<
TextResourceData
>
GetDecorateData
(
string
pname
)
{
if
(
issuspended
)
throw
new
Exception
(
"Data reader is suspended"
);
return
GetAllLumps
(
"DECORATE"
);
List
<
TextResourceData
>
result
=
GetAllLumps
(
pname
);
//mxd
//mxd. Return ALL DECORATE lumps
if
(
result
.
Count
==
0
||
string
.
Compare
(
pname
,
"DECORATE"
,
StringComparison
.
OrdinalIgnoreCase
)
==
0
)
return
result
;
//mxd. Return THE LAST include lump, because that's the way ZDoom seems to operate
return
new
List
<
TextResourceData
>
{
result
[
result
.
Count
-
1
]};
}
//mxd. Should be only one entry per wad
...
...
@@ -948,7 +955,7 @@ namespace CodeImp.DoomBuilder.Data
}
//mxd
private
IEnumerable
<
TextResourceData
>
GetAllLumps
(
string
name
)
private
List
<
TextResourceData
>
GetAllLumps
(
string
name
)
{
List
<
TextResourceData
>
result
=
new
List
<
TextResourceData
>();
...
...
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