mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
GameFile: Use enums for custom/length parameters
This commit is contained in:
@ -73,7 +73,7 @@ QGroupBox* InfoWidget::CreateISODetails()
|
||||
|
||||
QLineEdit* country = CreateValueDisplay(DiscIO::GetName(m_game.GetCountry(), true));
|
||||
|
||||
const std::string game_maker = m_game.GetMaker(false);
|
||||
const std::string game_maker = m_game.GetMaker(UICommon::GameFile::Variant::LongAndNotCustom);
|
||||
|
||||
QLineEdit* maker =
|
||||
CreateValueDisplay((game_maker.empty() ? UNKNOWN_NAME.toStdString() : game_maker) + " (" +
|
||||
|
Reference in New Issue
Block a user