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:
authorMartin Poirier <theeth@yahoo.com>2009-03-28 19:25:33 +0300
committerMartin Poirier <theeth@yahoo.com>2009-03-28 19:25:33 +0300
commitce6c77b5696eeee241b452bc9496c4edecee1deb (patch)
tree5d6726cf6d92f121acdd4f8c77d9c230de244e71 /source/blender/editors/space_sequencer
parente42070d20fd87d720ddcb8b0f4c6808a8c163714 (diff)
Sequencer crashed when trying to draw waveform because of commented out failsafe.
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c
index 0068c03f6f9..e71abec8e4b 100644
--- a/source/blender/editors/space_sequencer/sequencer_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_draw.c
@@ -264,7 +264,7 @@ static void drawseqwave(Scene *scene, View2D *v2d, Sequence *seq, float x1, floa
uint8_t *stream;
// XXX audio_makestream(seq->sound);
-// if(seq->sound==NULL || seq->sound->stream==NULL) return;
+ if(seq->sound==NULL || seq->sound->stream==NULL) return;
if (seq->flag & SEQ_MUTE) glColor3ub(0x70, 0x80, 0x80); else glColor3ub(0x70, 0xc0, 0xc0);