mirror of
https://github.com/pmret/papermario.git
synced 2024-11-09 12:32:38 +01:00
Avoid _VA_LIST_ in EVT_CALL (#611)
Fixes a weird compile error on precomp
This commit is contained in:
parent
2f86b35b63
commit
64c0b7de02
@ -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 ************************************************************************************************/
|
||||
|
Loading…
Reference in New Issue
Block a user