2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2025-01-03 06:35:36 +01:00

engine: host: fix build with Q_strchrnul returning const char *

This commit is contained in:
Alibek Omarov 2024-05-03 15:31:20 +03:00
parent b78e9961c6
commit 94d3eff9ce

View File

@ -959,9 +959,9 @@ static void Host_RunTests( int stage )
static uint32_t Host_CheckBugcomp( void )
{
const char *prev, *next;
uint32_t flags = 0;
string args, arg;
char *prev, *next;
size_t i;
if( !Sys_CheckParm( "-bugcomp" ))