diff options
Diffstat (limited to 'src/democustom.c')
-rw-r--r-- | src/democustom.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/democustom.c b/src/democustom.c index c7de77b..f8c7c9d 100644 --- a/src/democustom.c +++ b/src/democustom.c @@ -14,8 +14,6 @@ * PERFORMANCE OF THIS SOFTWARE. */ -#include <stdbool.h> - #include "bitbuf.h" #include "con_.h" #include "democustom.h" @@ -121,7 +119,7 @@ INIT { // > there might be some other l4d2 versions where it's 11 but idk // So here we have to figure out the network protocol version! // NOTE: assuming engclient != null as GEBN index relies on client version - int buildnum = VCALL(engclient, GetEngineBuildNumber); + int buildnum = GetEngineBuildNumber(engclient); // condition is redundant until other GetEngineBuildNumber offsets are added // if (GAMETYPE_MATCHES(L4D2)) { nbits_msgtype = 6; |