From 6141549feefcdd33ba36cecf7fb97f0b360f3bb4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 1 Aug 2020 20:04:22 +1000 Subject: Fix error in recent rename This function is defined outside of Blender. --- source/creator/creator.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/creator') diff --git a/source/creator/creator.c b/source/creator/creator.c index d53d2cb053d..2793765bf2c 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -127,7 +127,7 @@ void main_python_exit(void); * * This function is implemented in the USD source code, `pxr/base/lib/plug/initConfig.cpp`. */ -void usd_init_plugin_path(const char *datafiles_usd_path); +void usd_initialise_plugin_path(const char *datafiles_usd_path); #endif /* written to by 'creator_args.c' */ @@ -443,7 +443,7 @@ int main(int argc, #ifdef WITH_USD /* Tell USD which directory to search for its JSON files. If 'datafiles/usd' * does not exist, the USD library will not be able to read or write any files. */ - usd_init_plugin_path(BKE_appdir_folder_id(BLENDER_DATAFILES, "usd")); + usd_initialise_plugin_path(BKE_appdir_folder_id(BLENDER_DATAFILES, "usd")); #endif if (G.background == 0) { -- cgit v1.2.3