Removed debug info from 64 bit porting

Fixed minor bugs
This commit is contained in:
Pavol Marko
2004-07-23 17:29:03 +00:00
parent 6dc00f64f8
commit bbf8a21693
4 changed files with 8 additions and 40 deletions

View File

@@ -940,16 +940,4 @@ void *Module_ReqFnptr(const char *funcName)
return functions[i].ptr;
}
return NULL;
}
// :TODO: REMOVE!!!!!
extern "C" void amxx_print(const char * fmt, ...)
{
static char string[256];
va_list argptr;
va_start (argptr, fmt);
vsnprintf (string, 255, fmt, argptr);
va_end (argptr);
print_srvconsole(string);
}
}