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>2017-03-16 12:30:02 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-03-16 12:30:02 +0300
commitd68a84d1d2e11d88185cc5d55a6fda6d1dd99969 (patch)
tree148df27ad82ec588458848ffdc924a00b6c01928 /source/blender/blenloader/BLO_readfile.h
parent375ede0f3fdef936d5712968143e06c846c8d6d6 (diff)
Fix BGE building.
When you use typedef'ed enum, you need to define all supported values explicitely in enum, else compiler goes grumpy...
Diffstat (limited to 'source/blender/blenloader/BLO_readfile.h')
-rw-r--r--source/blender/blenloader/BLO_readfile.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenloader/BLO_readfile.h b/source/blender/blenloader/BLO_readfile.h
index e07d567ce61..52b8d15b987 100644
--- a/source/blender/blenloader/BLO_readfile.h
+++ b/source/blender/blenloader/BLO_readfile.h
@@ -74,6 +74,7 @@ typedef struct BlendFileData {
/* skip reading some data-block types (may want to skip screen data too). */
typedef enum eBLOReadSkip {
+ BLO_READ_SKIP_NONE = 0,
BLO_READ_SKIP_USERDEF = (1 << 0),
} eBLOReadSkip;