From 31d5cd8bb68276353edc4e79e8b58eaf86b61630 Mon Sep 17 00:00:00 2001 From: Hayden K Date: Fri, 7 Feb 2025 14:32:18 -0500 Subject: Add L4D1_1015plus and L4D1_1022plus gametype tags 1022 is the update that adds Mac support and introduces some of the already known vtable changes (this update is similar to 2040 for L4D2 in that regard), the tag will also see some use in some upcoming features. The 1015 tag is questionably necessary, but will be used for at least one feature (it's also the update that adds the newer matchmaking interfaces used in l4dreset.c, but having the tag available doesn't help anything there). --- src/gametype.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/gametype.h') diff --git a/src/gametype.h b/src/gametype.h index 98d360a..bed093d 100644 --- a/src/gametype.h +++ b/src/gametype.h @@ -54,8 +54,10 @@ extern u32 _gametype_tag; /* games needing version-specific stuff */ #define _gametype_tag_Portal1_3420 (1 << 17) -#define _gametype_tag_L4D2_2125plus (1 << 18) -#define _gametype_tag_TheLastStand (1 << 19) /* The JAiZ update */ +#define _gametype_tag_L4D1_1015plus (1 << 18) // Crash Course update +#define _gametype_tag_L4D1_1022plus (1 << 19) // Mac update, with code shuffling +#define _gametype_tag_L4D2_2125plus (1 << 20) +#define _gametype_tag_TheLastStand (1 << 21) /* The JAiZ update */ /* Matches for any multiple possible tags */ #define _gametype_tag_L4D (_gametype_tag_L4D1 | _gametype_tag_L4D2) -- cgit v1.2.3-54-g00ecf