Fixed bug in writing OPc into user_db.csv.

master
Pedro Alvarez 6 years ago
parent bd39d8bac2
commit b9c50a93a8

@ -246,11 +246,12 @@ bool hss::write_db_file(std::string db_filename)
m_db_file << ",";
if(it->second->op_configured){
m_db_file << "op,";
m_db_file << hex_string(it->second->op, 16);
}
else{
m_db_file << "opc,";
m_db_file << hex_string(it->second->opc, 16);
}
m_db_file << hex_string(it->second->op, 16);
m_db_file << ",";
m_db_file << hex_string(it->second->amf, 2);
m_db_file << ",";

Loading…
Cancel
Save