mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 07:25:26 +00:00
Timers scaling and fixes
This commit is contained in:
parent
d17be2c2ec
commit
85b1152e29
27 changed files with 160 additions and 162 deletions
|
|
@ -275,6 +275,22 @@ void fmt_class_string<tsx_usage>::format(std::string& out, u64 arg)
|
|||
});
|
||||
}
|
||||
|
||||
template <>
|
||||
void fmt_class_string<sleep_timers_accuracy_level>::format(std::string& out, u64 arg)
|
||||
{
|
||||
format_enum(out, arg, [](sleep_timers_accuracy_level value)
|
||||
{
|
||||
switch (value)
|
||||
{
|
||||
case sleep_timers_accuracy_level::_as_host: return "Host";
|
||||
case sleep_timers_accuracy_level::_usleep: return "Usleep";
|
||||
case sleep_timers_accuracy_level::_all_timers: return "All";
|
||||
}
|
||||
|
||||
return unknown;
|
||||
});
|
||||
}
|
||||
|
||||
template <>
|
||||
void fmt_class_string<enter_button_assign>::format(std::string& out, u64 arg)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue