Removed odd debug code, err, in CrazyDebug of all places

--HG--
branch : sourcemod-1.0.x
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/branches/sourcemod-1.0.x%402130
This commit is contained in:
Scott Ehlert 2008-05-09 08:22:22 +00:00
parent b2cc0869a5
commit 58d6a6793f

View File

@ -42,7 +42,7 @@ bool HookImportAddrTable(BYTE *base, const char *func, DWORD hookfunc, char *err
if (dos->e_magic != IMAGE_DOS_SIGNATURE)
{
UTIL_Format(err, maxlength, "%s", "Could not detect valid DOS signature");
return (err == NULL) ? true : false;
return false;
}
IMAGE_NT_HEADERS *nt = (IMAGE_NT_HEADERS *)(base + dos->e_lfanew);