From 4d557a3cb0dc817de55d3bee629bcaef80bffd2c Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 24 Nov 2023 14:22:21 +0100 Subject: Force console on Windows. --- src/lib/config.cc | 4 ++-- 1 file 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")) { -- cgit v1.2.3