Avoid _VA_LIST_ in EVT_CALL (#611)

Fixes a weird compile error on precomp
This commit is contained in:
Alex Bates 2022-01-07 23:01:22 +00:00 committed by GitHub
parent 2f86b35b63
commit 64c0b7de02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -502,7 +502,7 @@
/// EVT_CALL(ApiFunction)
///
/// The given arguments can be accessed from the API function using `thread->ptrReadPos`.
#define EVT_CALL(FUNC, ...) EVT_CMD(EVT_OP_CALL, (Bytecode) FUNC, ##__VA_ARGS__),
#define EVT_CALL(FUNC, ARGS...) EVT_CMD(EVT_OP_CALL, (Bytecode) FUNC, ##ARGS),
/****** COMMON SCRIPTS ************************************************************************************************/