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:
authorPablo Dobarro <pablodp606@gmail.com>2020-08-13 00:38:36 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-08-18 13:48:56 +0300
commite371378c8b52273eab4c834b544c6c9af4f71f02 (patch)
tree54e5ec0e3f33e30cbec8070dd5cb44cd7a27060a /source/blender/editors/sculpt_paint/sculpt.c
parent701a026d95dd80c16629540ab02bce8ba5491766 (diff)
Cleanup: rename bdata to boundary
Reviewed By: sergey Differential Revision: https://developer.blender.org/D8556
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 2fdf04a8b46..03d079ba0e1 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -6371,8 +6371,8 @@ void SCULPT_cache_free(StrokeCache *cache)
}
for (int i = 0; i < PAINT_SYMM_AREAS; i++) {
- if (cache->bdata[i]) {
- SCULPT_boundary_data_free(cache->bdata[i]);
+ if (cache->boundaries[i]) {
+ SCULPT_boundary_data_free(cache->boundaries[i]);
}
}