From 2c784f44cf2c1b72b9e08fac6dd8f6861dfd0d83 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Thu, 12 May 2022 17:44:43 +0200 Subject: Cleanup: use proper naming in Warp modifier read/write code. --- source/blender/modifiers/intern/MOD_warp.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source/blender/modifiers') 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); } } -- cgit v1.2.3