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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-12-07 19:30:19 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-12-07 19:30:47 +0300
commite9634b6930e4712260d69a2c4e350783144a371a (patch)
tree690d9e3a7805036f0c1097c488c5afb840af1a37 /source/blender/depsgraph
parente2d9166473184c4794dc6bdbf91aa2b6ac2a16ec (diff)
Cleanup, typo in naming
\Something went wrong in the rename script..
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_tag.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index 491548e7a18..f5f2b3424e8 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -168,7 +168,7 @@ void depsgraph_tag_to_component_opcode(const ID *id,
break;
case ID_RECALC_PSYS_REDO:
case ID_RECALC_PSYS_RESET:
- case ID_RECALC_PSYS_YPE:
+ case ID_RECALC_PSYS_TYPE:
case ID_RECALC_PSYS_CHILD:
case ID_RECALC_PSYS_PHYS:
if (id_type == ID_PA) {
@@ -592,7 +592,7 @@ const char *DEG_update_tag_as_string(IDRecalcFlag flag)
case ID_RECALC_ANIMATION: return "ANIMATION";
case ID_RECALC_PSYS_REDO: return "PSYS_REDO";
case ID_RECALC_PSYS_RESET: return "PSYS_RESET";
- case ID_RECALC_PSYS_YPE: return "PSYS_TYPE";
+ case ID_RECALC_PSYS_TYPE: return "PSYS_TYPE";
case ID_RECALC_PSYS_CHILD: return "PSYS_CHILD";
case ID_RECALC_PSYS_PHYS: return "PSYS_PHYS";
case ID_RECALC_PSYS_ALL: return "PSYS_ALL";