From 076df05b37b5902f7f5c55da53650a0bd3a939e2 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Sun, 7 Jul 2019 16:54:48 +0200 Subject: [PATCH] ui/debug_handler: Fix flags --- source/ui/debug_handler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/ui/debug_handler.cpp b/source/ui/debug_handler.cpp index a2cf355..3f224e5 100644 --- a/source/ui/debug_handler.cpp +++ b/source/ui/debug_handler.cpp @@ -111,8 +111,8 @@ void obsffmpeg::ui::debug_handler::get_properties(obs_properties_t* props, AVCod } else { auto unit_type = unit_types.find(opt->unit); if (unit_type == unit_types.end()) { - PLOG_INFO(" [%s] Constant '%s' and help text '%s' for missing unit.", - opt->unit, opt->name, opt->help); + PLOG_INFO(" [%s] Flag '%s' and help text '%s' with value '%llX'.", opt->unit, + opt->name, opt->help, opt->default_val.i64); } else { std::string out; switch (unit_type->second) {