From c836652e73bd59867e9ee0e8d6c1322623e47e1d Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Fri, 16 Dec 2022 20:22:43 +0200 Subject: [PATCH] found the particle system difference, it was the 50hz timeslice of later 3dengfx versions as opposed to the 30hz timeslice used at the time of summerhack. --- src/3dengfx/src/3dengfx/psys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/3dengfx/src/3dengfx/psys.cpp b/src/3dengfx/src/3dengfx/psys.cpp index b32cb69..2744ad9 100644 --- a/src/3dengfx/src/3dengfx/psys.cpp +++ b/src/3dengfx/src/3dengfx/psys.cpp @@ -159,7 +159,7 @@ ParticleSysParams::ParticleSysParams() { ParticleSystem::ParticleSystem(const char *fname) { - timeslice = 1.0 / 50.0; + timeslice = 1.0 / 30.0; SysCaps sys_caps = get_system_capabilities(); /* XXX: My Radeon Mobility 9000 supports point sprites but does not say so * in the extension string, it only has point params there. So I changed this -- 1.7.10.4