Fix to recent commit, == instead of = in do_version

This commit is contained in:
Howard Trickey 2014-01-14 12:28:19 -05:00
parent 8a8ee2c601
commit dad1d30bbf
1 changed files with 1 additions and 1 deletions

View File

@ -2662,7 +2662,7 @@ void blo_do_versions_260(FileData *fd, Library *UNUSED(lib), Main *main)
for (ob = main->object.first; ob; ob = ob->id.next) {
ModifierData *md;
for (md = ob->modifiers.first; md; md = md->next) {
if (md->type = eModifierType_Bevel) {
if (md->type == eModifierType_Bevel) {
BevelModifierData *bmd = (BevelModifierData *)md;
bmd->profile = 0.5f;
bmd->val_flags = MOD_BEVEL_AMT_OFFSET;