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:
authorCampbell Barton <ideasman42@gmail.com>2020-11-06 08:43:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-06 08:43:09 +0300
commitd9e7a426404a62d943f8a9f1c725b4a18df4cc92 (patch)
treed89f9d53a84aaa1164ba3f25fba93b3d3c1a3817 /source/creator
parent3c097af51f7e3fcf837e8f08d34dc56035b8893a (diff)
Cleanup: use 'BKE_' prefix for initialization functions
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 03608b59117..3365dad75d1 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -437,8 +437,8 @@ int main(int argc,
RNA_init();
RE_engines_init();
- init_nodesystem();
- psys_init_rng();
+ BKE_node_system_init();
+ BKE_particle_init_rng();
/* End second initialization. */
#if defined(WITH_PYTHON_MODULE) || defined(WITH_HEADLESS)