mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 09:21:09 +00:00
Fix a couple of missing particle function pointers.
Discovered while getting the location markers working again.
This commit is contained in:
parent
3519931b78
commit
dbbd6f4535
4 changed files with 20 additions and 0 deletions
|
@ -1607,6 +1607,8 @@ static vid_particle_funcs_t particles_QF = {
|
|||
R_TeleportSplash_QF,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
static vid_particle_funcs_t particles_ID = {
|
||||
|
@ -1633,6 +1635,8 @@ static vid_particle_funcs_t particles_ID = {
|
|||
R_TeleportSplash_ID,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
static vid_particle_funcs_t particles_QF_egg = {
|
||||
|
@ -1659,6 +1663,8 @@ static vid_particle_funcs_t particles_QF_egg = {
|
|||
R_TeleportSplash_EE,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
static vid_particle_funcs_t particles_ID_egg = {
|
||||
|
@ -1685,6 +1691,8 @@ static vid_particle_funcs_t particles_ID_egg = {
|
|||
R_TeleportSplash_EE,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
void
|
||||
|
|
|
@ -1796,6 +1796,8 @@ static vid_particle_funcs_t particles_QF = {
|
|||
R_TeleportSplash_QF,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
static vid_particle_funcs_t particles_ID = {
|
||||
|
@ -1822,6 +1824,8 @@ static vid_particle_funcs_t particles_ID = {
|
|||
R_TeleportSplash_ID,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
static vid_particle_funcs_t particles_QF_egg = {
|
||||
|
@ -1848,6 +1852,8 @@ static vid_particle_funcs_t particles_QF_egg = {
|
|||
R_TeleportSplash_EE,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
static vid_particle_funcs_t particles_ID_egg = {
|
||||
|
@ -1874,6 +1880,8 @@ static vid_particle_funcs_t particles_ID_egg = {
|
|||
R_TeleportSplash_EE,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
void
|
||||
|
|
|
@ -821,6 +821,8 @@ static vid_particle_funcs_t particles_QF = {
|
|||
R_TeleportSplash_QF,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
|
@ -833,6 +833,8 @@ static vid_particle_funcs_t particles_QF = {
|
|||
R_TeleportSplash_QF,
|
||||
R_DarkFieldParticles_ID,
|
||||
R_EntityParticles_ID,
|
||||
R_Particle_New,
|
||||
R_Particle_NewRandom,
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue