Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorHoward Trickey <howard.trickey@gmail.com>2014-01-14 21:28:19 +0400
committerHoward Trickey <howard.trickey@gmail.com>2014-01-14 21:29:03 +0400
commitdad1d30bbf09c5589459007540ba31d6d390b2ad (patch)
tree19e0d8d934e671b7c357cb8d3b3f8320035d02d3 /source
parent8a8ee2c601da8b744d6825db46b30a8bfb111b22 (diff)
Fix to recent commit, == instead of = in do_version
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenloader/intern/versioning_260.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_260.c b/source/blender/blenloader/intern/versioning_260.c
index 06355d3a812..768e0ba5e68 100644
--- a/source/blender/blenloader/intern/versioning_260.c
+++ b/source/blender/blenloader/intern/versioning_260.c
@@ -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;