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:
authorTon Roosendaal <ton@blender.org>2005-05-24 23:33:04 +0400
committerTon Roosendaal <ton@blender.org>2005-05-24 23:33:04 +0400
commit9e0e4adb684c9d7b7024cebe926d9937815c48ba (patch)
tree4ed09ee40d7d383cfcaeb09813e4d241004767b7 /source
parente975b78a4fe3ae75f0f9f3fd9c9e029a451ad2fa (diff)
Audio playback in TimeLine should not use 'scrubbing' option in the
update_for_newframe() call.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editscreen.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/blender/src/editscreen.c b/source/blender/src/editscreen.c
index 020cd608b5e..20cada29b95 100644
--- a/source/blender/src/editscreen.c
+++ b/source/blender/src/editscreen.c
@@ -1007,10 +1007,7 @@ int has_screenhandler(bScreen *sc, short eventcode)
static void animated_screen(bScreen *sc, short val)
{
- int mute= 1;
-
if (U.mixbufsize && (val & TIME_WITH_SEQ_AUDIO)) {
- mute= 0;
if(CFRA>=EFRA) {
CFRA= SFRA;
audiostream_stop();
@@ -1027,7 +1024,7 @@ static void animated_screen(bScreen *sc, short val)
if(CFRA > EFRA) CFRA= SFRA;
}
- update_for_newframe_nodraw(mute);
+ update_for_newframe_nodraw(1);
if(val & TIME_ALL_3D_WIN)
allqueue(REDRAWVIEW3D, 0);