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:
authorCampbell Barton <ideasman42@gmail.com>2020-06-10 16:01:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-06-10 16:01:57 +0300
commit044b824c9d4e718391fcb69ac226b61a4638c42a (patch)
treead293a9296662367c48bbc0bd23765800268c7a3 /source/blender/editors/include/ED_mball.h
parenteda58c47b88ee32f8eea902d290b61a4d1d27a17 (diff)
Cleanup: remove unused MBALL_NOSEL flag
Diffstat (limited to 'source/blender/editors/include/ED_mball.h')
-rw-r--r--source/blender/editors/include/ED_mball.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/editors/include/ED_mball.h b/source/blender/editors/include/ED_mball.h
index 4ecf97108e8..938d1059f90 100644
--- a/source/blender/editors/include/ED_mball.h
+++ b/source/blender/editors/include/ED_mball.h
@@ -54,12 +54,10 @@ void ED_mball_editmball_load(struct Object *obedit);
/* editmball_undo.c */
void ED_mball_undosys_type(struct UndoType *ut);
-#define MBALLSEL_STIFF (1 << 29)
-#define MBALLSEL_RADIUS (1 << 30)
+#define MBALLSEL_STIFF (1u << 30)
+#define MBALLSEL_RADIUS (1u << 31)
#define MBALLSEL_ANY (MBALLSEL_STIFF | MBALLSEL_RADIUS)
-#define MBALL_NOSEL (1u << 31u)
-
#ifdef __cplusplus
}
#endif