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 <bastien@blender.org>2022-05-12 18:45:46 +0300
committerBastien Montagne <bastien@blender.org>2022-05-12 18:45:46 +0300
commitd634194cac456444f6c2db3e42da68b60a6306b1 (patch)
tree39787e8022d929b08010562fa61eef38d8ed8b4b /source/blender/modifiers/intern
parent766340856db31e2b13e57e91b2ef612d6e49949c (diff)
parent2c784f44cf2c1b72b9e08fac6dd8f6861dfd0d83 (diff)
Merge branch 'blender-v3.2-release'
Diffstat (limited to 'source/blender/modifiers/intern')
-rw-r--r--source/blender/modifiers/intern/MOD_warp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/modifiers/intern/MOD_warp.c b/source/blender/modifiers/intern/MOD_warp.c
index e95d2983639..79972d1911d 100644
--- a/source/blender/modifiers/intern/MOD_warp.c
+++ b/source/blender/modifiers/intern/MOD_warp.c
@@ -491,20 +491,20 @@ static void panelRegister(ARegionType *region_type)
static void blendWrite(BlendWriter *writer, const ModifierData *md)
{
- const WarpModifierData *tmd = (const WarpModifierData *)md;
+ const WarpModifierData *wmd = (const WarpModifierData *)md;
- if (tmd->curfalloff) {
- BKE_curvemapping_blend_write(writer, tmd->curfalloff);
+ if (wmd->curfalloff) {
+ BKE_curvemapping_blend_write(writer, wmd->curfalloff);
}
}
static void blendRead(BlendDataReader *reader, ModifierData *md)
{
- WarpModifierData *tmd = (WarpModifierData *)md;
+ WarpModifierData *wmd = (WarpModifierData *)md;
- BLO_read_data_address(reader, &tmd->curfalloff);
- if (tmd->curfalloff) {
- BKE_curvemapping_blend_read(reader, tmd->curfalloff);
+ BLO_read_data_address(reader, &wmd->curfalloff);
+ if (wmd->curfalloff) {
+ BKE_curvemapping_blend_read(reader, wmd->curfalloff);
}
}