Fix a couple of name typos

This commit is contained in:
Connor McLaughlin
2021-02-11 02:17:25 +10:00
parent 6ab926ab28
commit bfa2b72e08
2 changed files with 3 additions and 3 deletions

View File

@ -522,7 +522,7 @@ const char* Settings::GetDiscRegionDisplayName(DiscRegion region)
static std::array<const char*, 3> s_cpu_execution_mode_names = {{"Interpreter", "CachedInterpreter", "Recompiler"}};
static std::array<const char*, 3> s_cpu_execution_mode_display_names = {
{TRANSLATABLE("CPUExecutionMode", "Intepreter (Slowest)"),
{TRANSLATABLE("CPUExecutionMode", "Interpreter (Slowest)"),
TRANSLATABLE("CPUExecutionMode", "Cached Interpreter (Faster)"),
TRANSLATABLE("CPUExecutionMode", "Recompiler (Fastest)")}};