mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
RSX/Overlays: Add option for japanese button layout
This commit is contained in:
parent
76da3fa907
commit
49e5212a8f
9 changed files with 116 additions and 11 deletions
|
@ -257,6 +257,21 @@ void fmt_class_string<tsx_usage>::format(std::string& out, u64 arg)
|
|||
});
|
||||
}
|
||||
|
||||
template <>
|
||||
void fmt_class_string<enter_button_assign>::format(std::string& out, u64 arg)
|
||||
{
|
||||
format_enum(out, arg, [](enter_button_assign value)
|
||||
{
|
||||
switch (value)
|
||||
{
|
||||
case enter_button_assign::circle: return "Enter with circle";
|
||||
case enter_button_assign::cross: return "Enter with cross";
|
||||
}
|
||||
|
||||
return unknown;
|
||||
});
|
||||
}
|
||||
|
||||
void Emulator::Init()
|
||||
{
|
||||
if (!g_tty)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue