FullscreenUI: More localization fixes

This commit is contained in:
Stenzek
2023-11-30 14:21:44 +10:00
parent 80a7c4b82a
commit 7d5e2bf50c
2 changed files with 15 additions and 11 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, Host::TranslateToString(info->name, info->display_name));
ret.emplace_back(info->name, Host::TranslateToString("ControllerType", info->display_name));
return ret;
}