mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-03 05:49:41 +03:00
fix windows build scripts, add windows opus support
This commit is contained in:
@@ -3365,7 +3365,7 @@ void CBaseEntity::FunctionCheck( void *pFunction, const char *name )
|
||||
// Note, if you crash here and your class is using multiple inheritance, it is
|
||||
// probably the case that CBaseEntity (or a descendant) is not the first
|
||||
// class in your list of ancestors, which it must be.
|
||||
if (pFunction && !UTIL_FunctionToName( GetDataDescMap(), (inputfunc_t *)pFunction ) )
|
||||
if (pFunction && !UTIL_FunctionToName( GetDataDescMap(), *(inputfunc_t*)pFunction ) )
|
||||
{
|
||||
Warning( "FUNCTION NOT IN TABLE!: %s:%s (%08lx)\n", STRING(m_iClassname), name, (unsigned long)pFunction );
|
||||
Assert(0);
|
||||
|
||||
Reference in New Issue
Block a user