diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-12-06 11:49:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-12-06 11:49:26 +0100 |
| commit | da89951e4129d03e490f06973376e4b6c866604b (patch) | |
| tree | bce7e84c5d4cb550d391f01ab211c8c1738f5665 | |
| parent | 138882d651c5fb9d1dc66d092fcca7f3762a1226 (diff) | |
Check if exceptions are displayed correctly during startup on Windows.check-win
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 212169d84..bf8d3b4b6 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -1248,6 +1248,8 @@ private: LOG_DEBUG_PLAYER ("Failed to start play server (%1)", e.what()); } + throw std::runtime_error("whoopee"); + if (!_dcp_to_load.empty() && dcp::filesystem::is_directory(_dcp_to_load)) { try { _frame->load_dcp (_dcp_to_load); |
