Skip to content
This repository has been archived by the owner on Jan 2, 2018. It is now read-only.

Commit

Permalink
Fix incorrect region check on EUR/AUS
Browse files Browse the repository at this point in the history
  • Loading branch information
goldencrater committed Dec 21, 2016
1 parent 865ae3b commit d96dbac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/main.cpp
Expand Up @@ -234,7 +234,7 @@ void installUpdates(bool downgrade)

if ( (( home == 0x0004003000008202LL ) && ( region != CFG_REGION_JPN )) ||
(( home == 0x0004003000008F02LL ) && ( region != CFG_REGION_USA )) ||
(( home == 0x0004003000009802LL ) && ( region != CFG_REGION_EUR || CFG_REGION_AUS )) ||
(( home == 0x0004003000009802LL ) && ( region != CFG_REGION_EUR ) && ( region != CFG_REGION_AUS )) ||
(( home == 0x000400300000A102LL ) && ( region != CFG_REGION_CHN )) ||
(( home == 0x000400300000A902LL ) && ( region != CFG_REGION_KOR )) ||
(( home == 0x000400300000B102LL ) && ( region != CFG_REGION_TWN )) ) {
Expand Down

0 comments on commit d96dbac

Please sign in to comment.