From e3e451b34e1b6ccbedeaf00c14f8381265a1a931 Mon Sep 17 00:00:00 2001 From: spycrab Date: Tue, 5 Jun 2018 20:25:15 +0200 Subject: [PATCH] Qt/InfoWidget: Don't prefix maker id with '0x' --- Source/Core/DolphinQt2/Config/InfoWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/Config/InfoWidget.cpp b/Source/Core/DolphinQt2/Config/InfoWidget.cpp index 106a96cf70..af1c204ef9 100644 --- a/Source/Core/DolphinQt2/Config/InfoWidget.cpp +++ b/Source/Core/DolphinQt2/Config/InfoWidget.cpp @@ -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();