diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-11-24 14:22:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-11-24 14:22:21 +0100 |
| commit | 4d557a3cb0dc817de55d3bee629bcaef80bffd2c (patch) | |
| tree | 248df36d7d5427592d7c292eb332e7d618d09c28 | |
| parent | 268d6fe969b4b85e4934685c19e934ab73fe4357 (diff) | |
Force console on Windows.cooler-debug
| -rw-r--r-- | src/lib/config.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc index 0572f4dd3..ff91a3a09 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -130,7 +130,7 @@ Config::set_defaults () _analyse_ebur128 = true; _automatic_audio_analysis = false; #ifdef DCPOMATIC_WINDOWS - _win32_console = false; + _win32_console = true; #endif /* At the moment we don't write these files anywhere new after a version change, so they will be read from * ~/.config/dcpomatic2 (or equivalent) and written back there. @@ -449,7 +449,7 @@ try _analyse_ebur128 = f.optional_bool_child("AnalyseEBUR128").get_value_or (true); _automatic_audio_analysis = f.optional_bool_child ("AutomaticAudioAnalysis").get_value_or (false); #ifdef DCPOMATIC_WINDOWS - _win32_console = f.optional_bool_child ("Win32Console").get_value_or (false); + _win32_console = true; #endif for (auto i: f.node_children("History")) { |
