2
0
mirror of https://github.com/FWGS/hlsdk-xash3d synced 2024-11-22 01:47:45 +01:00

Add missing cast.

This commit is contained in:
Night Owl 2016-06-04 17:05:10 +05:00
parent 056db40061
commit 015b5425ff

View File

@ -2378,7 +2378,7 @@ int CRestore::ReadField( void *pBaseData, TYPEDESCRIPTION *pFields, int fieldCou
if ( strlen( (char *)pInputData ) == 0 )
*((void**)pOutputData) = 0;
else
*((void**)pOutputData) = FUNCTION_FROM_NAME( (char *)pInputData );
*((void**)pOutputData) = (void**)FUNCTION_FROM_NAME( (char *)pInputData );
break;
default: