Eevee: Fix Exponent default in versioning code

This commit is contained in:
Clément Foucault 2017-11-01 00:54:47 +01:00
parent 98cbd4c925
commit 0518577f5d
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ void blo_do_versions_280(FileData *fd, Library *UNUSED(lib), Main *main)
if (!MAIN_VERSION_ATLEAST(main, 280, 1)) {
if (!DNA_struct_elem_find(fd->filesdna, "Lamp", "float", "bleedexp")) {
for (Lamp *la = main->lamp.first; la; la = la->id.next) {
la->bleedexp = 120.0f;
la->bleedexp = 2.5f;
}
}