From 031594cc99a3cc4c279d9602bf913dbfbcd9380d Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 2 Jul 2023 06:36:35 +0300 Subject: [PATCH] filesystem: update max_particles limits based on Unkle Mike's latest engine version --- filesystem/filesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filesystem/filesystem.c b/filesystem/filesystem.c index f5637c26..3837ee23 100644 --- a/filesystem/filesystem.c +++ b/filesystem/filesystem.c @@ -818,7 +818,7 @@ void FS_ParseGenericGameInfo( gameinfo_t *GameInfo, const char *buf, const qbool else if( !Q_stricmp( token, "max_particles" )) { pfile = COM_ParseFile( pfile, token, sizeof( token )); - GameInfo->max_particles = bound( 4096, Q_atoi( token ), 32768 ); + GameInfo->max_particles = bound( 1024, Q_atoi( token ), 131072 ); } else if( !Q_stricmp( token, "gamemode" )) {