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:
Diffstat (limited to 'source/creator/creator.c')
-rw-r--r--source/creator/creator.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index b3c11198403..ab9541cf299 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -91,7 +91,6 @@
#include "RE_engine.h"
#include "RE_pipeline.h"
-//XXX #include "playanim_ext.h"
#include "ED_datafiles.h"
#include "WM_api.h"
@@ -454,11 +453,9 @@ static int set_env(int argc, const char **argv, void *UNUSED(data))
static int playback_mode(int argc, const char **argv, void *UNUSED(data))
{
- extern void playanim(int argc, const char **argv);
-
/* not if -b was given first */
if (G.background == 0) {
- playanim(argc, argv); /* not the same argc and argv as before */
+ WM_main_playanim(argc, argv); /* not the same argc and argv as before */
exit(0); /* 2.4x didn't do this */
}