diff options
author | 2025-05-10 23:48:42 +0100 | |
---|---|---|
committer | 2025-05-10 23:48:42 +0100 | |
commit | 9fa7a853f0a1924373dec6a2005278f81b68d4ba (patch) | |
tree | b130f8a2e37a8075d7a96277ba66bf4295a79b9e | |
parent | a462d0fefd4776f64a4f509155314526ebe3bb55 (diff) | |
download | sst-9fa7a853f0a1924373dec6a2005278f81b68d4ba.tar.gz sst-9fa7a853f0a1924373dec6a2005278f81b68d4ba.zip |
Fix a stupid typo
Inconsequential at the moment, but still worth fixing.
-rw-r--r-- | src/vcall.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) */ |