Skip to content

Commit

Permalink
Fix #969
Browse files Browse the repository at this point in the history
  • Loading branch information
hotline1337 committed Dec 25, 2023
1 parent 1a48885 commit 2a30d62
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions R3nzSkin_Injector/Injector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,14 @@ void WINAPI Injector::enableDebugPrivilege() noexcept

void Injector::autoUpdate()
{
/* do not even bother if we are from Chinese regions */
/* do not even bother if we are from Chinese regions and Brazil */
auto whitelisted_regions = gcnew array<String^> {
xor_clrstr_w(L"zh-CN"),
xor_clrstr_w(L"zh-TW"),
xor_clrstr_w(L"zh-HK"),
xor_clrstr_w(L"zh-MO"),
xor_clrstr_w(L"zh-SG")
xor_clrstr_w(L"zh-SG"),
xor_clrstr_w(L"pt-BR")
};
auto current_culture = CultureInfo::CurrentCulture;
auto region = current_culture->Name;
Expand Down

0 comments on commit 2a30d62

Please sign in to comment.