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:
authorBrecht Van Lommel <brecht@blender.org>2020-03-13 14:06:29 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-03-13 14:06:29 +0300
commit1ca582c6516496332ff0f7fc6c92bd650ea9926f (patch)
treec4ac9f57c4a0000a8bf6998c92fd17244c92fd90
parent36528704831936b5a73a2d7157665bdc85f1c704 (diff)
Fix IDTypeInfo not having enough bits for ID filter flag
-rw-r--r--source/blender/blenkernel/BKE_idtype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_idtype.h b/source/blender/blenkernel/BKE_idtype.h
index 9562ace3c51..e6e82900f6d 100644
--- a/source/blender/blenkernel/BKE_idtype.h
+++ b/source/blender/blenkernel/BKE_idtype.h
@@ -70,7 +70,7 @@ typedef struct IDTypeInfo {
* Bitflag matching id_code, used for filtering (e.g. in file browser), see DNA_ID.h's
* FILTER_ID_XX enums.
*/
- int id_filter;
+ int64_t id_filter;
/**
* Define the position of this data-block type in the virtual list of all data in a Main that is