rename some functions to use easier to understand names.

'BLI_makestringcode' --> 'BLI_path_rel'
'BLI_convertstringcwd' --> 'BLI_path_cwd'
'BLI_convertstringframe' --> 'BLI_path_frame'
'BLI_convertstringframe_range' --> 'BLI_path_frame_range'
'BLI_make_cwdpath' --> 'BLI_path_cwd'
This commit is contained in:
2010-03-09 17:36:23 +00:00
parent 26272d4c58
commit 1708ac0723
37 changed files with 90 additions and 115 deletions

View File

@@ -1064,7 +1064,7 @@ static int ptcache_path(PTCacheID *pid, char *filename)
file[i-6] = '\0';
snprintf(filename, MAX_PTCACHE_PATH, "//"PTCACHE_PATH"%s", file); /* add blend file name to pointcache dir */
BLI_convertstringcode(filename, blendfilename);
BLI_path_abs(filename, blendfilename);
return BLI_add_slash(filename); /* new strlen() */
}