mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
dt_recv: replace long with int32
This commit is contained in:
parent
46fa635cb2
commit
c739b2c5bb
@ -493,7 +493,7 @@ void RecvProxy_Int32ToInt16( const CRecvProxyData *pData, void *pStruct, void *p
|
||||
|
||||
void RecvProxy_Int32ToInt32( const CRecvProxyData *pData, void *pStruct, void *pOut )
|
||||
{
|
||||
*((unsigned long*)pOut) = (unsigned long)pData->m_Value.m_Int;
|
||||
*((uint32*)pOut) = (uint32)pData->m_Value.m_Int;
|
||||
}
|
||||
|
||||
#ifdef SUPPORTS_INT64
|
||||
|
Loading…
Reference in New Issue
Block a user