about summary refs log tree commit diff
path: root/src/game/client/gc_particles.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/gc_particles.cpp')
-rw-r--r--src/game/client/gc_particles.cpp4
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;