2020-12-05 13:08:24 +01:00
|
|
|
#include "stdafx.h"
|
2020-09-02 16:20:29 +02:00
|
|
|
#include "localized_string.h"
|
|
|
|
|
#include "System.h"
|
|
|
|
|
|
2020-09-03 18:30:46 +02:00
|
|
|
std::string get_localized_string(localized_string_id id, const char* args)
|
2020-09-02 16:20:29 +02:00
|
|
|
{
|
2020-09-03 18:30:46 +02:00
|
|
|
return Emu.GetCallbacks().get_localized_string(id, args);
|
2020-09-02 16:20:29 +02:00
|
|
|
}
|
|
|
|
|
|
2020-09-03 18:30:46 +02:00
|
|
|
std::u32string get_localized_u32string(localized_string_id id, const char* args)
|
2020-09-02 16:20:29 +02:00
|
|
|
{
|
2020-09-03 18:30:46 +02:00
|
|
|
return Emu.GetCallbacks().get_localized_u32string(id, args);
|
2020-09-02 16:20:29 +02:00
|
|
|
}
|