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
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2018-01-11 16:26:44 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-01-11 16:26:44 +0300
commitb415ed55a74c51b944cd0682fc7a81679778ac8f (patch)
tree66bedd1fdc1b963406659abd6e4820ea4e1313bd /source/blender
parent0edda8e4ce4e7dc0d72a105b773896b7b17c480b (diff)
Fix critical issue with our DNA ID tags (two totally different tags having same value).
Nice typo from rBc4046e9082f6, tssk. ;)
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesdna/DNA_ID.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 81c0b6f656b..80640d8dffe 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -349,7 +349,7 @@ enum {
LIB_TAG_PRE_EXISTING = 1 << 11,
/* RESET_NEVER tag datablock for freeing etc. behavior (usually set when copying real one into temp/runtime one). */
- LIB_TAG_NO_MAIN = 1 << 11, /* Datablock is not listed in Main database. */
+ LIB_TAG_NO_MAIN = 1 << 12, /* Datablock is not listed in Main database. */
LIB_TAG_NO_USER_REFCOUNT = 1 << 13, /* Datablock does not refcount usages of other IDs. */
/* Datablock was not allocated by standard system (BKE_libblock_alloc), do not free its memory
* (usual type-specific freeing is called though). */