ui/debug_handler: Print flags as normal values instead of hexadecimal

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-07-11 22:57:26 +02:00
parent cdb03a488e
commit b7fdd5491a
+1 -1
View File
@@ -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;