diff options
author | Jordi Vilalta Prat | 2010-12-01 12:30:58 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2010-12-01 12:30:58 +0000 |
commit | 768d3dd6f75cba577e03367d4dbed65ac051b21f (patch) | |
tree | eda528407e88c234b81fa822de66f03a8cc713b8 /backends/platform | |
parent | 0fc6a9bb4568c10e35019cd0928f641202808ed2 (diff) | |
download | scummvm-rg350-768d3dd6f75cba577e03367d4dbed65ac051b21f.tar.gz scummvm-rg350-768d3dd6f75cba577e03367d4dbed65ac051b21f.tar.bz2 scummvm-rg350-768d3dd6f75cba577e03367d4dbed65ac051b21f.zip |
WII: Fix compilation
svn-id: r54698
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/wii/osystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/wii/osystem.cpp b/backends/platform/wii/osystem.cpp index 950afbb3ba..9939bb41de 100644 --- a/backends/platform/wii/osystem.cpp +++ b/backends/platform/wii/osystem.cpp @@ -314,7 +314,7 @@ Common::String OSystem_Wii::getSystemLanguage() const { Common::String country; // TODO: Can we get more fine-grained country setting? int32 areaID = CONF_GetArea(); - if ((areaID >= CONF_AREA_JPN) && (areaID <= CONF_AREA_CHN) { + if ((areaID >= CONF_AREA_JPN) && (areaID <= CONF_AREA_CHN)) { // It's a known area. if (areaID == CONF_AREA_BRA) { // Portuguese isn't available on the Wii, but we know it's the |