Skip to content

Commit

Permalink
fix: correct va func def (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloliverx committed Nov 8, 2024
1 parent 5994f9d commit bfe710d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/xenon/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void (*SV_ClientThink)(client_t *cl, usercmd_s *cmd) = reinterpret_cast<void (*)
void (*ClientThink)(int clientNum) = reinterpret_cast<void (*)(int clientNum)>(0x822886E8);
void (*G_SetLastServerTime)(int clientNum, int lastServerTime) = reinterpret_cast<void (*)(int clientNum, int lastServerTime)>(0x82285D08);
void (*Com_PrintError)(conChannel_t channel, const char *fmt, ...) = reinterpret_cast<void (*)(conChannel_t channel, const char *fmt, ...)>(0x82235C50);
char (*va)(char *format, ...) = reinterpret_cast<char (*)(char *format, ...)>(0x821CD858);
char *(*va)(char *format, ...) = reinterpret_cast<char *(*)(char *format, ...)>(0x821CD858);
void (*Scr_AddInt)(int value) = reinterpret_cast<void (*)(int value)>(0x822111C0);
void (*Scr_Error)(const char *error) = reinterpret_cast<void (*)(const char *error)>(0x8220F6F0);
gentity_s *(*Scr_GetEntity)(scr_entref_t *entref) = reinterpret_cast<gentity_s *(*)(scr_entref_t *)>(0x8224EE68);
Expand Down

0 comments on commit bfe710d

Please sign in to comment.