X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fposition_image.cc;h=544f08defd4ad75cc603835e7292290a37702ea0;hb=6fde557864505b470c438e4161ee494f29b90d63;hp=44c1262b3a90d11aba8e6ec94438e39cff950102;hpb=1c13441a19aa387ddd8ac0c972207ccbbe3114d8;p=dcpomatic.git diff --git a/src/lib/position_image.cc b/src/lib/position_image.cc index 44c1262b3..544f08def 100644 --- a/src/lib/position_image.cc +++ b/src/lib/position_image.cc @@ -19,17 +19,19 @@ #include "position_image.h" #include "image.h" +#include using std::cout; bool PositionImage::same (PositionImage const & other) const { - if (image != other.image || position != other.position) { + if ((!image && other.image) || (image && !other.image) || position != other.position) { return false; } if (!image) { + /* Neither has image and the positions are the same */ return true; }