diff options
| author | 2023-05-10 17:57:25 -0400 | |
|---|---|---|
| committer | 2023-07-21 10:56:07 -0400 | |
| commit | 8e151460265f04c7bf4a981b5f97f252a0444c27 (patch) | |
| tree | dc02219effed841c9a2c20b013db9390ed3981c6 /src/core/hle/service/ns | |
| parent | per_game: Remove general tab (diff) | |
| download | yuzu-8e151460265f04c7bf4a981b5f97f252a0444c27.tar.gz yuzu-8e151460265f04c7bf4a981b5f97f252a0444c27.tar.xz yuzu-8e151460265f04c7bf4a981b5f97f252a0444c27.zip | |
configure_system: Implement with for loop
Diffstat (limited to 'src/core/hle/service/ns')
| -rw-r--r-- | src/core/hle/service/ns/ns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ns/ns.cpp b/src/core/hle/service/ns/ns.cpp index 376067a95..91c5a2182 100644 --- a/src/core/hle/service/ns/ns.cpp +++ b/src/core/hle/service/ns/ns.cpp | |||
| @@ -409,7 +409,7 @@ ResultVal<u8> IApplicationManagerInterface::GetApplicationDesiredLanguage( | |||
| 409 | 409 | ||
| 410 | // Get language code from settings | 410 | // Get language code from settings |
| 411 | const auto language_code = | 411 | const auto language_code = |
| 412 | Set::GetLanguageCodeFromIndex(Settings::values.language_index.GetValue()); | 412 | Set::GetLanguageCodeFromIndex(static_cast<s32>(Settings::values.language_index.GetValue())); |
| 413 | 413 | ||
| 414 | // Convert to application language, get priority list | 414 | // Convert to application language, get priority list |
| 415 | const auto application_language = ConvertToApplicationLanguage(language_code); | 415 | const auto application_language = ConvertToApplicationLanguage(language_code); |