FullscreenUI: More localization fixes

This commit is contained in:
Stenzek
2023-11-29 23:11:28 +10:00
parent 4ac4388b08
commit dfb27c14be
3 changed files with 5 additions and 3 deletions

View File

@ -138,7 +138,7 @@ std::vector<std::pair<std::string, std::string>> Controller::GetControllerTypeNa
{
std::vector<std::pair<std::string, std::string>> ret;
for (const ControllerInfo* info : s_controller_info)
ret.emplace_back(info->name, info->display_name);
ret.emplace_back(info->name, Host::TranslateToString(info->name, info->display_name));
return ret;
}