Qt: Really fix the build this time

This commit is contained in:
Jeffrey Pfau 2015-10-10 21:09:57 -07:00
parent c53e3546dd
commit a8110342ce
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ void IOViewer::bitFlipped() {
m_value |= m_ui.bD->isChecked() << 0xD;
m_value |= m_ui.bE->isChecked() << 0xE;
m_value |= m_ui.bF->isChecked() << 0xF;
m_ui.regValue->setText(QString::asprintf("0x%04X", m_value));
m_ui.regValue->setText("0x" + QString("%1").arg(m_value, 4, 16, QChar('0')).toUpper());
}
void IOViewer::writeback() {