diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-05-28 23:00:58 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-05-28 23:00:58 +0200 |
| commit | 7df6916987eeff65ff2f20f99ea0edbd90116f8c (patch) | |
| tree | b85129667a20fa4e95dff88e660bf5d6693069a5 | |
| parent | 970c75b75f9acc5dad4f3df10938687552b57874 (diff) | |
Fix stupid mistake introduced in 1e010ab5.v1.8.71
| -rw-r--r-- | src/reel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reel.cc b/src/reel.cc index c6049015..49fe0360 100644 --- a/src/reel.cc +++ b/src/reel.cc @@ -365,9 +365,9 @@ Reel::add (shared_ptr<ReelAsset> asset) _closed_captions.push_back (c); } else if (auto a = dynamic_pointer_cast<ReelAtmosAsset>(asset)) { _atmos = a; + } else { + DCP_ASSERT(false); } - - DCP_ASSERT(false); } |
