From 9fa7a853f0a1924373dec6a2005278f81b68d4ba Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sat, 10 May 2025 23:48:42 +0100 Subject: Fix a stupid typo Inconsequential at the moment, but still worth fixing. --- src/vcall.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vcall.h b/src/vcall.h index 7f230b0..f3a1f02 100644 --- a/src/vcall.h +++ b/src/vcall.h @@ -126,7 +126,7 @@ _DECL_VFUNC(class, ret, VCALLCONV, name, idx __VA_OPT__(,) __VA_ARGS__) /* Define a virtual function with a known index, without thiscall convention */ -#define DECL_VFUNC_CDEFCL(class, ret, name, idx, ...) \ +#define DECL_VFUNC_CDECL(class, ret, name, idx, ...) \ _DECL_VFUNC(class, ret, , name, idx __VA_OPT__(,) __VA_ARGS__) /* Define a virtual function with an index defined elsewhere (e.g. gamedata) */ -- cgit v1.2.3-54-g00ecf