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,9 +256,12 @@ public:
mm_UnloadMetamodLibrary();
mm_LogFatal("Detected engine %d but could not find GetGameDllBridge callback", backend);
}
else
{
gamedll_bridge = get_bridge();
}
}
}
if (gamedll_bridge)
{