engine: shift netchan flags bit to the right, as one of the flags is removed

This commit is contained in:
Alibek Omarov
2025-12-01 01:05:23 +05:00
parent e05d6ec27c
commit 3bc32d6e1b

View File

@@ -167,10 +167,10 @@ typedef enum fragsize_e
typedef enum netchan_flags_e
{
NETCHAN_USE_MUNGE = BIT( 1 ),
NETCHAN_USE_BZIP2 = BIT( 2 ),
NETCHAN_GOLDSRC = BIT( 3 ),
NETCHAN_USE_LZSS = BIT( 4 ), // mutually exclusive with bzip2
NETCHAN_USE_MUNGE = BIT( 0 ),
NETCHAN_USE_BZIP2 = BIT( 1 ),
NETCHAN_GOLDSRC = BIT( 2 ),
NETCHAN_USE_LZSS = BIT( 3 ), // mutually exclusive with bzip2
} netchan_flags_t;
// Network Connection Channel