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-10-22 09:07:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-22 09:07:56 +0300
commit9ea345d1cf82f0770d7bb90ccac4bc6df00f9a94 (patch)
treeb78fe6136d1de431a9bf5e5ede7632ebc436bbf8 /source/blender/blenkernel/intern/appdir.c
parentef969fb85f83b648bf04471534fa7a980102cfd7 (diff)
Fix animation player initialization
Updates from 9d30fade3ea9b weren't applied to the animation player causing an assert and missing call to IMB_init.
Diffstat (limited to 'source/blender/blenkernel/intern/appdir.c')
-rw-r--r--source/blender/blenkernel/intern/appdir.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/appdir.c b/source/blender/blenkernel/intern/appdir.c
index 00c62340e16..2038079744d 100644
--- a/source/blender/blenkernel/intern/appdir.c
+++ b/source/blender/blenkernel/intern/appdir.c
@@ -109,6 +109,7 @@ static bool is_appdir_init = false;
void BKE_appdir_init(void)
{
#ifndef NDEBUG
+ BLI_assert(is_appdir_init == false);
is_appdir_init = true;
#endif
}