Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 5, 2012
1 parent 597b281 commit 2a7a596
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doomsday/engine/portable/src/rend_particle.c
Expand Up @@ -66,12 +66,12 @@ static Generators* gens;
void Rend_ParticleRegister(void)
{
// Cvars
C_VAR_BYTE("rend-particle", &useParticles, 0, 0, 1);
C_VAR_INT("rend-particle-max", &maxParticles, CVF_NO_MAX, 0, 0);
C_VAR_FLOAT("rend-particle-rate", &particleSpawnRate, 0, 0, 5);
C_VAR_FLOAT("rend-particle-diffuse", &particleDiffuse, CVF_NO_MAX, 0, 0);
C_VAR_INT("rend-particle-visible-near", &particleNearLimit, CVF_NO_MAX, 0, 0);
C_VAR_BYTE("rend-dev-generator-show-indices", &devDrawGenerators, CVF_NO_ARCHIVE, 0, 1);
C_VAR_BYTE ("rend-particle", &useParticles, 0, 0, 1);
C_VAR_INT ("rend-particle-max", &maxParticles, CVF_NO_MAX, 0, 0);
C_VAR_FLOAT("rend-particle-rate", &particleSpawnRate, 0, 0, 5);
C_VAR_FLOAT("rend-particle-diffuse", &particleDiffuse, CVF_NO_MAX, 0, 0);
C_VAR_INT ("rend-particle-visible-near", &particleNearLimit, CVF_NO_MAX, 0, 0);
C_VAR_BYTE ("rend-dev-generator-show-indices", &devDrawGenerators, CVF_NO_ARCHIVE, 0, 1);
}

static int markPtcGenVisible(ptcgen_t* gen, void* parameters)
Expand Down

0 comments on commit 2a7a596

Please sign in to comment.