mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-09 09:39:13 +00:00
Common/MsgHandler: Namespace code within the Common namespace
Closes another gap in the Common library where code isn't being namespaced under it.
This commit is contained in:
parent
e7dd46a531
commit
4f1f55093f
15 changed files with 214 additions and 143 deletions
|
@ -64,7 +64,7 @@ std::string GetName(Country country, bool translate)
|
|||
break;
|
||||
}
|
||||
|
||||
return translate ? GetStringT(name.c_str()) : name;
|
||||
return translate ? Common::GetStringT(name.c_str()) : name;
|
||||
}
|
||||
|
||||
std::string GetName(Language language, bool translate)
|
||||
|
@ -108,7 +108,7 @@ std::string GetName(Language language, bool translate)
|
|||
break;
|
||||
}
|
||||
|
||||
return translate ? GetStringT(name.c_str()) : name;
|
||||
return translate ? Common::GetStringT(name.c_str()) : name;
|
||||
}
|
||||
|
||||
bool IsDisc(Platform volume_type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue