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-12-09 06:10:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-12-09 06:10:30 +0300
commit5cdfceaa1a7efb71d528a04a01cb74181f1aa8e4 (patch)
treecdb4a5a88a9ce3a0241b76dabe2e5b7edbe7d5b7 /source/blender/makesdna/DNA_modifier_types.h
parent9b11a7776f2ab8ac42e835a17ed7566fd80a4b8c (diff)
Cleanup: use common 'MOD_WELD_MODE_' prefix
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index d99564ff33e..03cf4aca963 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -2016,8 +2016,8 @@ enum {
/* #WeldModifierData.mode */
enum {
- MOD_WELD_ALL_MODE = 0,
- MOD_WELD_CONNECTED_MODE = 1,
+ MOD_WELD_MODE_ALL = 0,
+ MOD_WELD_MODE_CONNECTED = 1,
};
typedef struct DataTransferModifierData {