summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-04-05 02:26:26 +0100
committerCarl Hetherington <cth@carlh.net>2018-04-05 02:26:26 +0100
commitbb733a578dd3ca906d6a268805babf40b0a67a48 (patch)
tree2d29320fd4eb494b340860789717c7095919271b /src
parent1954ed123a1adf18c56fc18beb363116260256a6 (diff)
Tidy up assertion.
Diffstat (limited to 'src')
-rw-r--r--src/lib/shuffler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/shuffler.cc b/src/lib/shuffler.cc
index 0ec4daf5a..889d81c71 100644
--- a/src/lib/shuffler.cc
+++ b/src/lib/shuffler.cc
@@ -43,7 +43,7 @@ void
Shuffler::video (weak_ptr<Piece> weak_piece, ContentVideo video)
{
/* Something has gong wrong if our store gets too big */
- DCPOMATIC_ASSERT (_store.size() != 8);
+ DCPOMATIC_ASSERT (_store.size() < 8);
/* We should only ever see 3D_LEFT / 3D_RIGHT */
DCPOMATIC_ASSERT (video.eyes == EYES_LEFT || video.eyes == EYES_RIGHT);