Fix sceNpManagerGetAccountRegion's returned language

This commit is contained in:
RipleyTom
2025-10-05 02:56:43 +02:00
committed by Elad
parent f05fabdb79
commit 48bf30aa2d
+1 -1
View File
@@ -3968,7 +3968,7 @@ error_code sceNpManagerGetAccountRegion(vm::ptr<SceNpCountryCode> countryCode, v
ensure(ccode.size() == sizeof(SceNpCountryCode::data));
std::memcpy(countryCode->data, ccode.data(), sizeof(SceNpCountryCode::data));
*language = CELL_SYSUTIL_LANG_ENGLISH_US;
*language = g_cfg.sys.language;
return CELL_OK;
}