2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 09:56:22 +01:00

engine: fix Com_ParseFile call

This commit is contained in:
Alibek Omarov 2021-07-20 16:26:17 +03:00
parent 88ce5fd0b6
commit 901e52615b

View File

@ -596,7 +596,7 @@ void Cmd_TokenizeString( const char *text )
cmd_args = text;
host.com_ignorebracket = true;
text = COM_ParseFile( text, cmd_token );
text = COM_ParseFile( (char*)text, cmd_token );
host.com_ignorebracket = false;
if( !text ) return;