aboutsummaryrefslogtreecommitdiff
path: root/simon/simon.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-11-18 01:36:14 +0000
committerTravis Howell2005-11-18 01:36:14 +0000
commit2f8306aeb4601fccbb0c58becd29488b2db43dc7 (patch)
tree2a77a7d158272e6fe0d0f12bf17cd0f635ce6612 /simon/simon.cpp
parent9cde2621920b456fe2a2403b04af820700bf5072 (diff)
downloadscummvm-rg350-2f8306aeb4601fccbb0c58becd29488b2db43dc7.tar.gz
scummvm-rg350-2f8306aeb4601fccbb0c58becd29488b2db43dc7.tar.bz2
scummvm-rg350-2f8306aeb4601fccbb0c58becd29488b2db43dc7.zip
Add Polish charset.
Remove some hard coded values. svn-id: r19635
Diffstat (limited to 'simon/simon.cpp')
-rw-r--r--simon/simon.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index ed1194eeed..8a424e13af 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -660,19 +660,19 @@ int SimonEngine::init(GameDetector &detector) {
if ((getGameType() == GType_SIMON1) && (getFeatures() & GF_TALKIE)) {
// Add default file directories
switch (_language) {
- case 20:
+ case Common::HB_ISR:
File::addDefaultDirectory(_gameDataPath + "hebrew/");
File::addDefaultDirectory(_gameDataPath + "HEBREW/");
break;
- case 5:
+ case Common::ES_ESP:
File::addDefaultDirectory(_gameDataPath + "spanish/");
File::addDefaultDirectory(_gameDataPath + "SPANISH/");
break;
- case 3:
+ case Common::IT_ITA:
File::addDefaultDirectory(_gameDataPath + "italian/");
File::addDefaultDirectory(_gameDataPath + "ITALIAN/");
break;
- case 2:
+ case Common::FR_FRA:
File::addDefaultDirectory(_gameDataPath + "french/");
File::addDefaultDirectory(_gameDataPath + "FRENCH/");
break;