Initialize libcurl

This commit is contained in:
Kawe Mazidjatari 2023-01-26 19:58:21 +01:00
parent 6c21fc5b7a
commit 684b1e561a

View File

@ -23,6 +23,8 @@ void SDK_Init()
MathLib_Init(); // Initialize Mathlib.
WinSock_Init(); // Initialize Winsock.
curl_global_init(CURL_GLOBAL_ALL);
if (strstr(GetCommandLineA(), "-launcher"))
{
g_svCmdLine = GetCommandLineA();
@ -72,6 +74,8 @@ void SDK_Shutdown()
bShutDown = true;
spdlog::info("Shutdown GameSDK\n");
curl_global_cleanup();
WinSock_Shutdown();
Systems_Shutdown();
WinSys_Detach();