From 3bc32d6e1bdbd512cce67eda16f8409f5079ce0c Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 1 Dec 2025 01:05:23 +0500 Subject: [PATCH] engine: shift netchan flags bit to the right, as one of the flags is removed --- engine/common/netchan.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/engine/common/netchan.h b/engine/common/netchan.h index d388c842..88c8ccd8 100644 --- a/engine/common/netchan.h +++ b/engine/common/netchan.h @@ -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