From 5ddaede3fa99cd9757167d18c953f019214bfb04 Mon Sep 17 00:00:00 2001 From: DeaDDooMER Date: Sat, 2 Feb 2019 14:17:16 +0300 Subject: [PATCH] Fix limits in config --- src/game/g_options.pas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/game/g_options.pas b/src/game/g_options.pas index 1f3bd48..25b55d1 100644 --- a/src/game/g_options.pas +++ b/src/game/g_options.pas @@ -615,10 +615,10 @@ begin ReadBoolean(g_touch_alt, 'Alt'); section := 'Game'; - ReadInteger(i, 'MaxParticles', 1000, 50000); g_GFX_SetMax(i); - ReadInteger(i, 'MaxShells', 300, 600); g_Shells_SetMax(i); - ReadInteger(i, 'MaxGibs', 150, 500); g_Gibs_SetMax(i); - ReadInteger(i, 'MaxCorpses', 20, 100); g_Corpses_SetMax(i); + ReadInteger(i, 'MaxParticles', 0, 50000); g_GFX_SetMax(i); + ReadInteger(i, 'MaxShells', 0, 600); g_Shells_SetMax(i); + ReadInteger(i, 'MaxGibs', 0, 500); g_Gibs_SetMax(i); + ReadInteger(i, 'MaxCorpses', 0, 100); g_Corpses_SetMax(i); ReadInteger(i, 'GibsCount'); case i of 0: gGibsCount := 0; -- 2.29.2