1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-20 13:54:14 +01:00

Fixed a crash bug when using providers that don't export GetGameDllBridge.

This commit is contained in:
David Anderson 2008-11-23 22:36:06 -06:00
parent e1a9b482b3
commit 18251be939

View File

@ -256,7 +256,10 @@ public:
mm_UnloadMetamodLibrary();
mm_LogFatal("Detected engine %d but could not find GetGameDllBridge callback", backend);
}
gamedll_bridge = get_bridge();
else
{
gamedll_bridge = get_bridge();
}
}
}