mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
Qt/InfoWidget: Don't prefix maker id with '0x'
This commit is contained in:
parent
f422b88ed9
commit
e3e451b34e
@ -76,7 +76,7 @@ QGroupBox* InfoWidget::CreateISODetails()
|
||||
const std::string game_maker = m_game.GetMaker();
|
||||
|
||||
QLineEdit* maker =
|
||||
CreateValueDisplay((game_maker.empty() ? UNKNOWN_NAME.toStdString() : game_maker) + " (0x" +
|
||||
CreateValueDisplay((game_maker.empty() ? UNKNOWN_NAME.toStdString() : game_maker) + " (" +
|
||||
m_game.GetMakerID() + ")");
|
||||
QWidget* checksum = CreateChecksumComputer();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user