fixed dt_hex in printSettings()

This commit is contained in:
john30
2014-12-27 13:56:51 +01:00
parent 7f00d18373
commit ffd7d3ff18
+3
View File
@@ -249,6 +249,9 @@ void Appl::printSettings()
else
cerr << "no" << endl;
}
else if (o_it->datatype == dt_hex) {
cerr << hex << getOptVal<int>(o_it->name) << dec << endl;
}
else if (o_it->datatype == dt_int) {
cerr << getOptVal<int>(o_it->name) << endl;
}