diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-22 01:17:45 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-22 01:17:45 +0100 |
| commit | 7b16a669e797cc9d876dfd31eef92905d9121e85 (patch) | |
| tree | c85347d3978511c40b59b587fa76e8dce109f2da /src/tools | |
| parent | 34f7a41b24c4fa61b759f2e4b511111268758f71 (diff) | |
Fix strange default of user_explicit with set_video_frame_rate.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 853f46560..037fd3d72 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -518,7 +518,7 @@ public: } if (dcp->video_frame_rate()) { - _film->set_video_frame_rate(dcp->video_frame_rate().get(), true); + _film->set_video_frame_rate(dcp->video_frame_rate().get()); } switch (dcp->video_encoding()) { |
