diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-06-12 10:51:48 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-06-12 10:51:48 +0000 |
| commit | f6c67c29cd10d41b877ee1319801edc01b625e72 (patch) | |
| tree | 6ca26c44ac0218a57d078a6f72034f2924b44104 /src/game/client/gc_particles.cpp | |
| parent | 0d3b988c1aed8f6b91879a801253db81a251a532 (diff) | |
| download | zcatch-f6c67c29cd10d41b877ee1319801edc01b625e72.tar.gz zcatch-f6c67c29cd10d41b877ee1319801edc01b625e72.zip | |
large commit with loads of clean up. more is comming
Diffstat (limited to 'src/game/client/gc_particles.cpp')
| -rw-r--r-- | src/game/client/gc_particles.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/gc_particles.cpp b/src/game/client/gc_particles.cpp index a0b1ff92..2c3ef36c 100644 --- a/src/game/client/gc_particles.cpp +++ b/src/game/client/gc_particles.cpp @@ -9,7 +9,7 @@ enum MAX_PARTICLES=1024*8, }; -static particle particles[MAX_PARTICLES]; +static PARTICLE particles[MAX_PARTICLES]; static int first_free = -1; static int first_part[NUM_PARTGROUPS] = {-1}; @@ -31,7 +31,7 @@ void particle_reset() } -void particle_add(int group, particle *part) +void particle_add(int group, PARTICLE *part) { if (first_free == -1) return; |