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:
authorChris Blackbourn <chrisbblend@gmail.com>2022-11-09 04:54:37 +0300
committerChris Blackbourn <chrisbblend@gmail.com>2022-11-09 04:54:37 +0300
commit2d9d08677ecfa2684a67c39ab1d632865716ccb4 (patch)
tree7b68d706eb13afda3229208ac58d259e675c5a49 /source/blender/blenkernel
parent335082dcd329dc74f3788a14eb7aefd84358aa50 (diff)
Cleanup: fix types from f04f9cc3d021
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/BKE_mesh_mapping.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_mesh_mapping.h b/source/blender/blenkernel/BKE_mesh_mapping.h
index d0813ebb168..705158bec0b 100644
--- a/source/blender/blenkernel/BKE_mesh_mapping.h
+++ b/source/blender/blenkernel/BKE_mesh_mapping.h
@@ -83,7 +83,7 @@ typedef struct UvElementMap {
struct UvElement **head_table;
/** If Non-NULL, pointer to index of each unique UV. */
- int **unique_index_table;
+ int *unique_index_table;
/** Number of islands, or zero if not calculated. */
int total_islands;