mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 04:22:34 +00:00
- Fixed check for embedded WADs again.
SVN r1562 (trunk)
This commit is contained in:
parent
3bbef315f6
commit
edbeab54a0
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ void FResourceLump::CheckEmbedded()
|
||||||
{
|
{
|
||||||
// Checks for embedded archives
|
// Checks for embedded archives
|
||||||
const char *c = strstr(FullName, ".wad");
|
const char *c = strstr(FullName, ".wad");
|
||||||
if (c && strlen(c) == 4 && !strchr(Name, '/'))
|
if (c && strlen(c) == 4 && !strchr(FullName, '/'))
|
||||||
{
|
{
|
||||||
// Mark all embedded WADs
|
// Mark all embedded WADs
|
||||||
Flags |= LUMPF_EMBEDDED;
|
Flags |= LUMPF_EMBEDDED;
|
||||||
|
|
Loading…
Reference in a new issue