From a04df29f22d7d3fe87633d3cb03ef018a7ffe21c Mon Sep 17 00:00:00 2001 From: Pavol Marko Date: Thu, 29 Apr 2004 17:13:36 +0000 Subject: [PATCH] fixed a bug where the post engine functions table was copied to the "normal" engine functions table --- amxmodx/fakemeta.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amxmodx/fakemeta.cpp b/amxmodx/fakemeta.cpp index 4366f7f5..956db06e 100755 --- a/amxmodx/fakemeta.cpp +++ b/amxmodx/fakemeta.cpp @@ -150,7 +150,7 @@ void FakeError() (*iter).GetInfo()->name, (*iter).GetPath(), #pfnArgs); \ if (mres == MRES_SUPERCEDE) \ AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has set meta result in \"%s\" to supercede", \ - (*iter).GetInfo()->name, (*iter).GetPath(), #pfnArgs); \ + (*iter).GetInfo()->name, (*iter).GetPath(), #pfnName); \ } \ } \ /* Set meta result to the highest value */ \ @@ -2519,7 +2519,7 @@ int CFakeMeta::CFakeMetaPlugin::GetEngineFunctions(int interfaceVersion) int CFakeMeta::CFakeMetaPlugin::GetEngineFunctions_Post(int interfaceVersion) { - FAKEMETA_GET_FUNCTABLE(GetEngineFunctions, interfaceVersion, m_EngineFuncTable_Post); + FAKEMETA_GET_FUNCTABLE(GetEngineFunctions_Post, interfaceVersion, m_EngineFuncTable_Post); } int CFakeMeta::CFakeMetaPlugin::GetNewDLLFunctions(int interfaceVersion)