Qt/overlays: Localize most rsx overlays

This commit is contained in:
Megamouse 2020-09-02 16:20:29 +02:00
parent fe9c61fe73
commit 460a933267
21 changed files with 244 additions and 34 deletions

View file

@ -0,0 +1,13 @@
#include "stdafx.h"
#include "localized_string.h"
#include "System.h"
std::string get_localized_string(localized_string_id id)
{
return Emu.GetCallbacks().get_localized_string(id);
}
std::u32string get_localized_u32string(localized_string_id id)
{
return Emu.GetCallbacks().get_localized_u32string(id);
}