1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-11-29 11:24:19 +01:00

Removed unnecessary logging to metamod-fatal.log when using GameDLL loading.

This commit is contained in:
Scott Ehlert 2008-11-24 02:08:05 -06:00
parent 28e9e22fe1
commit 656761950b

View File

@ -434,9 +434,8 @@ mm_PrepForGameLoad()
void *
mm_GameDllRequest(const char *name, int *ret)
{
if (gamedll_lib != NULL && gamedll_bridge == NULL)
if (gamedll_lib != NULL)
{
mm_LogFatal("Requested unknown interface before game load: %s", name);
return gamedll_qvi(name, ret);
}