mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 15:31:17 +01:00
Merge pull request #7082 from spycrab/qt_makerid_prefix
Qt/InfoWidget: Don't prefix maker id with '0x'
This commit is contained in:
commit
89b7da74e4
@ -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…
x
Reference in New Issue
Block a user