summaryrefslogtreecommitdiff
path: root/src/lib/decoder_part.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-02-07 20:14:19 +0000
committerCarl Hetherington <cth@carlh.net>2018-02-07 20:14:19 +0000
commit8bfe295dcc4e1753ee1c89310108bc6bc034cd61 (patch)
tree289ccc6ecca26e97248a79a966921edc74b5e08a /src/lib/decoder_part.h
parent42a6035c187305bd4c541bb1ab87b242b58beb7e (diff)
Fix ignore/referencing logic.
Diffstat (limited to 'src/lib/decoder_part.h')
-rw-r--r--src/lib/decoder_part.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/decoder_part.h b/src/lib/decoder_part.h
index a9568be8a..1d0473fa5 100644
--- a/src/lib/decoder_part.h
+++ b/src/lib/decoder_part.h
@@ -35,8 +35,8 @@ public:
virtual ContentTime position () const = 0;
- void set_ignore () {
- _ignore = true;
+ void set_ignore (bool i) {
+ _ignore = i;
}
bool ignore () const {