Qt/InfoWidget: Don't prefix maker id with '0x'

This commit is contained in:
spycrab 2018-06-05 20:25:15 +02:00
parent f422b88ed9
commit e3e451b34e
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ QGroupBox* InfoWidget::CreateISODetails()
const std::string game_maker = m_game.GetMaker(); const std::string game_maker = m_game.GetMaker();
QLineEdit* maker = QLineEdit* maker =
CreateValueDisplay((game_maker.empty() ? UNKNOWN_NAME.toStdString() : game_maker) + " (0x" + CreateValueDisplay((game_maker.empty() ? UNKNOWN_NAME.toStdString() : game_maker) + " (" +
m_game.GetMakerID() + ")"); m_game.GetMakerID() + ")");
QWidget* checksum = CreateChecksumComputer(); QWidget* checksum = CreateChecksumComputer();