light: fix typo, min_color should have been mincolor

This commit is contained in:
Eric Wasylishen 2016-07-23 22:54:17 -06:00
parent 2e9c58fb46
commit 0cd0778860
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ qboolean scaledonly = false;
lockable_vec_t addminlight {"addmin", 0}; lockable_vec_t addminlight {"addmin", 0};
lockable_vec_t minlight {"light", 0}; lockable_vec_t minlight {"light", 0};
lockable_vec3_t minlight_color {strings{"minlight_color", "min_color"}, 255.0f, 255.0f, 255.0f, vec3_transformer_t::NORMALIZE_COLOR_TO_255}; lockable_vec3_t minlight_color {strings{"minlight_color", "mincolor"}, 255.0f, 255.0f, 255.0f, vec3_transformer_t::NORMALIZE_COLOR_TO_255};
sun_t *suns = NULL; sun_t *suns = NULL;