diff --git a/source/blender/makesdna/DNA_freestyle_types.h b/source/blender/makesdna/DNA_freestyle_types.h index b5fe7ead936..01b28ca1700 100644 --- a/source/blender/makesdna/DNA_freestyle_types.h +++ b/source/blender/makesdna/DNA_freestyle_types.h @@ -90,7 +90,7 @@ struct FreestyleLineStyle; typedef struct FreestyleLineSet { struct FreestyleLineSet *next, *prev; - char name[32]; /* line set name */ + char name[64]; /* line set name, MAX_NAME */ int flags; int selection; /* selection criteria */ @@ -107,7 +107,7 @@ typedef struct FreestyleLineSet { typedef struct FreestyleModuleConfig { struct FreestyleModuleConfig *next, *prev; - char module_path[256]; + char module_path[1024]; /* FILE_MAX */ short is_displayed; short pad[3]; } FreestyleModuleConfig; diff --git a/source/blender/makesdna/DNA_linestyle_types.h b/source/blender/makesdna/DNA_linestyle_types.h index 9a42c79c098..f5473d3d84a 100644 --- a/source/blender/makesdna/DNA_linestyle_types.h +++ b/source/blender/makesdna/DNA_linestyle_types.h @@ -37,7 +37,7 @@ struct CurveMapping; typedef struct LineStyleModifier { struct LineStyleModifier *next, *prev; - char name[32]; + char name[64]; /* MAX_NAME */ int type; float influence; int flags;