mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-12 23:54:17 +00:00
fix some stuff
This commit is contained in:
parent
39020f7f95
commit
728bbd6327
2 changed files with 2 additions and 1 deletions
|
@ -1227,6 +1227,7 @@ set( GAME_SOURCES
|
|||
common/filesystem/source/fs_findfile.cpp
|
||||
common/filesystem/source/fs_stringpool.cpp
|
||||
common/filesystem/source/unicode.cpp
|
||||
common/filesystem/source/critsec.cpp
|
||||
|
||||
)
|
||||
|
||||
|
|
|
@ -709,7 +709,7 @@ FileReader FUncompressedFile::GetEntryReader(uint32_t entry, bool newreader)
|
|||
FileReader fr;
|
||||
if (entry < NumLumps)
|
||||
{
|
||||
if (!Entries[entry].Flags & RESFF_COMPRESSED)
|
||||
if (!(Entries[entry].Flags & RESFF_COMPRESSED))
|
||||
{
|
||||
if (!newreader)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue