From: Carl Hetherington Date: Fri, 24 Nov 2023 13:22:21 +0000 (+0100) Subject: Force console on Windows. X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=refs%2Fheads%2Fcooler-debug;hp=268d6fe969b4b85e4934685c19e934ab73fe4357;p=dcpomatic.git Force console on Windows. --- 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")) {