From b7fdd5491a39aa9bc8d35e31d61792a54bf0b223 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Thu, 11 Jul 2019 22:57:26 +0200 Subject: [PATCH] ui/debug_handler: Print flags as normal values instead of hexadecimal --- source/ui/debug_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ui/debug_handler.cpp b/source/ui/debug_handler.cpp index 3f224e5..ab03ec3 100644 --- a/source/ui/debug_handler.cpp +++ b/source/ui/debug_handler.cpp @@ -111,7 +111,7 @@ 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] Flag '%s' and help text '%s' with value '%llX'.", opt->unit, + PLOG_INFO(" [%s] Flag '%s' and help text '%s' with value '%lld'.", opt->unit, opt->name, opt->help, opt->default_val.i64); } else { std::string out;