This commit is contained in:
FutureRave 2022-02-14 16:52:35 +00:00
parent 067085c7e7
commit 6043283ec9
No known key found for this signature in database
GPG Key ID: E883E2BC9657D955

View File

@ -795,7 +795,7 @@ namespace Game
typedef client_t*(__cdecl * SV_GetPlayerByNum_t)();
extern SV_GetPlayerByNum_t SV_GetPlayerByNum;
typedef int(__cdecl * Sys_Error_t)(int, char *, ...);
typedef int(__cdecl * Sys_Error_t)(const char* error, ...);
extern Sys_Error_t Sys_Error;
typedef void(__cdecl * Sys_FreeFileList_t)(char** list);
@ -837,9 +837,6 @@ namespace Game
typedef void(__cdecl * Sys_SuspendOtherThreads_t)();
extern Sys_SuspendOtherThreads_t Sys_SuspendOtherThreads;
typedef void(__cdecl * Sys_Error_t)(char const*, ...);
extern Sys_Error_t Sys_Error;
typedef void(__cdecl * UI_AddMenuList_t)(UiContext *dc, MenuList *menuList, int close);
extern UI_AddMenuList_t UI_AddMenuList;