From 29d2d8b3f864bc4219504af8af4a9afef05aefb8 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Thu, 7 Dec 2017 01:53:35 -0500 Subject: [PATCH] - changed ttl in particle_t from short to int32_t for longer lifespan. --- src/p_effect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_effect.h b/src/p_effect.h index bb87a53d54..4620bfa5a9 100644 --- a/src/p_effect.h +++ b/src/p_effect.h @@ -52,7 +52,7 @@ struct particle_t double size; double sizestep; subsector_t * subsector; - short ttl; + int32_t ttl; uint8_t bright; bool notimefreeze; float fadestep;