diff options
Diffstat (limited to 'ai/ai_event.h')
-rw-r--r-- | ai/ai_event.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ai/ai_event.h b/ai/ai_event.h index 7f96f71b8..1f49f338b 100644 --- a/ai/ai_event.h +++ b/ai/ai_event.h @@ -20,9 +20,9 @@ * Ugly, I know, but it works! */ # ifdef DEF_EVENTS - void empty_function(PlayerID player, int event, ...) {} + void CDECL empty_function(PlayerID player, int event, ...) {} # else - extern void empty_function(PlayerID player, int event, ...); + extern void CDECL empty_function(PlayerID player, int event, ...); # endif # define ai_event empty_function |