mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
Merge xfloat options
This commit is contained in:
parent
e6009794ee
commit
343ba8733b
7 changed files with 70 additions and 62 deletions
|
@ -1283,6 +1283,14 @@ QString emu_settings::GetLocalizedSetting(const QString& original, emu_settings_
|
|||
case midi_device_type::keyboard: return tr("Keyboard", "Midi Device Type");
|
||||
}
|
||||
break;
|
||||
case emu_settings_type::XFloatAccuracy:
|
||||
switch (static_cast<xfloat_accuracy>(index))
|
||||
{
|
||||
case xfloat_accuracy::accurate: return tr("Accurate XFloat");
|
||||
case xfloat_accuracy::approximate: return tr("Approximate XFloat");
|
||||
case xfloat_accuracy::relaxed: return tr("Relaxed XFloat");
|
||||
case xfloat_accuracy::inaccurate: return tr("Inaccurate XFloat");
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue