aboutsummaryrefslogtreecommitdiff
path: root/src/Config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Config.cpp')
-rw-r--r--src/Config.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Config.cpp b/src/Config.cpp
index 2f99625..ec2f777 100644
--- a/src/Config.cpp
+++ b/src/Config.cpp
@@ -12,6 +12,10 @@
#define CONFIG_FILE_VERSION 1
namespace gsr {
+ Config::Config() {
+ streaming_config.record_options.video_quality = "custom";
+ }
+
static std::optional<KeyValue> parse_key_value(std::string_view line) {
const size_t space_index = line.find(' ');
if(space_index == std::string_view::npos)