From ffd7d3ff1885e1e2cc126cbd111ba161dd1ab69c Mon Sep 17 00:00:00 2001 From: john30 Date: Sat, 27 Dec 2014 13:56:51 +0100 Subject: [PATCH] fixed dt_hex in printSettings() --- src/lib/utils/appl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/utils/appl.cpp b/src/lib/utils/appl.cpp index 8e67cbe0..56051573 100644 --- a/src/lib/utils/appl.cpp +++ b/src/lib/utils/appl.cpp @@ -249,6 +249,9 @@ void Appl::printSettings() else cerr << "no" << endl; } + else if (o_it->datatype == dt_hex) { + cerr << hex << getOptVal(o_it->name) << dec << endl; + } else if (o_it->datatype == dt_int) { cerr << getOptVal(o_it->name) << endl; }