Skip to content

Commit

Permalink
Renamed cvar "rend-dev-surface-normals" to "rend-dev-surface-show-nor…
Browse files Browse the repository at this point in the history
…mals" for consistency with other similar cvars.
  • Loading branch information
danij committed Dec 22, 2008
1 parent 0974d3b commit d39cf4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doomsday/engine/data/cphelp.txt
Expand Up @@ -1056,7 +1056,7 @@ desc = Sector light range compression (brighten dark areas / darken light areas)
[rend-dev-light-mod]
desc = Show the light-level mod range.

[rend-dev-surface-normals]
[rend-dev-surface-show-normals]
desc = 1=Enable drawing of world surface normals, for debug.

[rend-dev-vertex-show-indices]
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/rend_main.c
Expand Up @@ -150,7 +150,7 @@ void Rend_Register(void)
C_VAR_FLOAT("rend-dev-blockmap-debug-size", &bmapDebugSize, CVF_NO_ARCHIVE, .1f, 100);
C_VAR_BYTE("rend-dev-vertex-show-indices", &devVertexIndices, CVF_NO_ARCHIVE, 0, 1);
C_VAR_BYTE("rend-dev-vertex-show-bars", &devVertexBars, CVF_NO_ARCHIVE, 0, 1);
C_VAR_BYTE("rend-dev-surface-normals", &devSurfaceNormals, CVF_NO_ARCHIVE, 0, 1);
C_VAR_BYTE("rend-dev-surface-show-normals", &devSurfaceNormals, CVF_NO_ARCHIVE, 0, 1);

RL_Register();
DL_Register();
Expand Down

0 comments on commit d39cf4c

Please sign in to comment.