2
0
mirror of https://github.com/rehlds/reapi.git synced 2024-12-28 15:45:31 +03:00

fix conflict interfaces vgui.dll & swds.dll (fix listenserver crash) (#206)

This commit is contained in:
Vaqtincha 2021-08-10 10:26:16 +05:00 committed by GitHub
parent 97aea0f397
commit cfeb51fff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,11 @@ IRehldsServerStatic* g_RehldsSvs;
bool RehldsApi_Init()
{
if (!IS_DEDICATED_SERVER())
{
return false;
}
#ifdef WIN32
CSysModule* engineModule = Sys_LoadModule("swds.dll");
#else