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
path: root/source
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2010-08-02 02:33:50 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-08-02 02:33:50 +0400
commit52ef66da4d785414e7ae5a60dd44a01727514169 (patch)
treecb9a26f84277abae1a4f47ef6f445a4ef0466587 /source
parent5c9cf81cf98c99e52064b0cd45be3b2eaba9e40c (diff)
Audaspace:
* Created awesome filter classes :) * Made all filter effects use the filter classes instead of having the same implementation everywhere. * Added a Python API for LTI IIR filters. * Fixed a warning in creator.c that was introduced when adding game autoplay.
Diffstat (limited to 'source')
-rw-r--r--source/creator/creator.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 77961ec4d80..e894e071011 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -1138,9 +1138,10 @@ int main(int argc, char **argv)
else {
if((G.fileflags & G_FILE_AUTOPLAY) && (G.f & G_SCRIPT_AUTOEXEC))
+ {
if(WM_init_game(C))
return 0;
-
+ }
else if(!G.file_loaded)
WM_init_splash(C);
}