diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-06 01:08:31 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-06 01:08:31 +0000 |
| commit | bb6ceb671f08e0294556036af7ca5f88d1db2fca (patch) | |
| tree | 0cf8c71d346da81c864597b91868e9cd4062a92c | |
| parent | a0fedb33cab65a1be1c49319b7f14319897991f3 (diff) | |
Fix thinko.
| -rw-r--r-- | src/lib/matcher.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/matcher.cc b/src/lib/matcher.cc index 70a9b2a85..749acf463 100644 --- a/src/lib/matcher.cc +++ b/src/lib/matcher.cc @@ -143,7 +143,7 @@ Matcher::fix_start () void Matcher::match (double extra_video_needed) { - if (extra_video_needed) { + if (extra_video_needed > 0) { /* Emit black video frames */ |
