mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
split rpcs3 and hle libraries
merge rpcs3 utilities
This commit is contained in:
parent
b33e2662b6
commit
62ad27d1e2
1233 changed files with 7004 additions and 3819 deletions
13
rpcs3/Emu/localized_string.cpp
Normal file
13
rpcs3/Emu/localized_string.cpp
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#include "stdafx.h"
|
||||
#include "localized_string.h"
|
||||
#include "System.h"
|
||||
|
||||
std::string get_localized_string(localized_string_id id, const char* args)
|
||||
{
|
||||
return Emu.GetCallbacks().get_localized_string(id, args);
|
||||
}
|
||||
|
||||
std::u32string get_localized_u32string(localized_string_id id, const char* args)
|
||||
{
|
||||
return Emu.GetCallbacks().get_localized_u32string(id, args);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue