From ae771e742b44119352255bd604e4ffcf427e5049 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 21 Jan 2012 14:54:53 +0000 Subject: change filepath limit from 240 to 1024 --- source/blender/makesdna/DNA_texture_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/makesdna/DNA_texture_types.h') diff --git a/source/blender/makesdna/DNA_texture_types.h b/source/blender/makesdna/DNA_texture_types.h index 1cc84669e3b..de844fd2d7f 100644 --- a/source/blender/makesdna/DNA_texture_types.h +++ b/source/blender/makesdna/DNA_texture_types.h @@ -105,7 +105,7 @@ typedef unsigned short dna_ushort_fix; #endif typedef struct PluginTex { - char name[160]; + char name[1024]; void *handle; char *pname; @@ -200,7 +200,7 @@ typedef struct VoxelData { struct Object *object; /* for rendering smoke sims */ float int_multiplier; int still_frame; - char source_path[240]; /* 240 = FILE_MAX */ + char source_path[1024]; /* 1024 = FILE_MAX */ /* temporary data */ float *dataset; -- cgit v1.2.3