diff options
author | Jordi Vilalta Prat | 2010-12-01 19:46:46 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2010-12-01 19:46:46 +0000 |
commit | cb8ce9feac90dcd0c59b47af5002718b9b754ee2 (patch) | |
tree | 1f7c4d53b7bd3197989cf7c250219bfbf29df1fa | |
parent | 1cb199229aa4f159a725e2ab114842fab37deba2 (diff) | |
download | scummvm-rg350-cb8ce9feac90dcd0c59b47af5002718b9b754ee2.tar.gz scummvm-rg350-cb8ce9feac90dcd0c59b47af5002718b9b754ee2.tar.bz2 scummvm-rg350-cb8ce9feac90dcd0c59b47af5002718b9b754ee2.zip |
WII: Let the base backend decide the default detected language.
svn-id: r54713
-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 9939bb41de..fb08ac4a7d 100644 --- a/backends/platform/wii/osystem.cpp +++ b/backends/platform/wii/osystem.cpp @@ -361,7 +361,7 @@ Common::String OSystem_Wii::getSystemLanguage() const { } else { // This will only happen when new languages are added to the API. warning("WII: Unknown system language: %d", langID); - return ""; + return BaseBackend::getSystemLanguage(); } } #endif // !GAMECUBE |