mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 01:22:18 +00:00
Fixed, DECORATE parser: we should use full path when reporting wad DECORATE parse errors.
This commit is contained in:
parent
05d097a713
commit
d4cfdd78c6
1 changed files with 1 additions and 1 deletions
|
@ -802,7 +802,7 @@ namespace CodeImp.DoomBuilder.Data
|
|||
int lumpindex = file.FindLumpIndex(pname);
|
||||
while(lumpindex > -1)
|
||||
{
|
||||
result.Add(pname, file.Lumps[lumpindex].Stream);
|
||||
result.Add(Path.Combine(file.Filename, pname), file.Lumps[lumpindex].Stream);
|
||||
|
||||
// Find next
|
||||
lumpindex = file.FindLumpIndex(pname, lumpindex + 1);
|
||||
|
|
Loading…
Reference in a new issue