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