We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a5838c commit 370bec6Copy full SHA for 370bec6
src/maploader/glnodes.cpp
@@ -900,7 +900,8 @@ bool MapLoader::LoadGLNodes(MapData * map)
900
break;
901
}
902
else
903
- gwalumps[i] = f_gwa->GetEntryReader(li + i + 1, FileSys::READER_NEW, FileSys::READERFLAG_SEEKABLE);
+ // This is a special case. The container for the map WAD is not set up to create new file handles for itself so this needs to cache the content here.
904
+ gwalumps[i] = f_gwa->GetEntryReader(li + i + 1, FileSys::READER_CACHED, FileSys::READERFLAG_SEEKABLE);
905
906
if (result) result = DoLoadGLNodes(gwalumps);
907
0 commit comments