File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ namespace BspParser {
207
207
);
208
208
}
209
209
210
- const auto isGameLumpCompressed = lumpHeader.flags & Structs::GameLump::COMPRESSED_FLAG != 0 ;
210
+ const auto isGameLumpCompressed = ( lumpHeader.flags & Structs::GameLump::COMPRESSED_FLAG) != 0 ;
211
211
const auto gameLumpSpan = data.subspan (lumpHeader.offset , lumpHeader.length );
212
212
213
213
const auto dictionaryData = SourceParsers::Internal::OffsetDataView (
Original file line number Diff line number Diff line change @@ -5,9 +5,7 @@ namespace BspParser::Enums {
5
5
/* *
6
6
* https://sourcegraph.com/github.com/lua9520/source-engine-2018-hl2_src@3bf9df6b2785fa6d951086978a3e66f49427166a/-/blob/public/zip_utils.h?L26:3-26:24
7
7
*/
8
- enum class ZipCompressionMethod : uint16_t {
9
- Unknown = -1 ,
10
- None = 0 ,
11
- LZMA = 14
8
+ enum class ZipCompressionMethod : int16_t {
9
+ Unknown = -1 , None = 0 , LZMA = 14
12
10
};
13
11
}
You can’t perform that action at this time.
0 commit comments