aboutsummaryrefslogtreecommitdiff
path: root/engines/queen/resource.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2007-11-01 17:06:03 +0000
committerFilippos Karapetis2007-11-01 17:06:03 +0000
commit60c6720441ae107b93a92e1e691f0a31a95e40c3 (patch)
tree2cefe1e8d1dbe65409516cdfd4febdf18db4c5df /engines/queen/resource.cpp
parenta20ad01075a4387bc9731859db1a74f90a144d0d (diff)
downloadscummvm-rg350-60c6720441ae107b93a92e1e691f0a31a95e40c3.tar.gz
scummvm-rg350-60c6720441ae107b93a92e1e691f0a31a95e40c3.tar.bz2
scummvm-rg350-60c6720441ae107b93a92e1e691f0a31a95e40c3.zip
Some changes to FOTAQ for the work in progress Greek translation in FR #1723255 - "FOTAQ code modifications (mostly for greek translation)":
- Added Greek font to FOTAQ - When the verb is "Go to" in the Greek version, there won't be a space after the verb and the item (as per the translator's request) - The strings in the journal are not cut off in the Greek version svn-id: r29360
Diffstat (limited to 'engines/queen/resource.cpp')
-rw-r--r--engines/queen/resource.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/queen/resource.cpp b/engines/queen/resource.cpp
index 8e33051287..17ba9014fe 100644
--- a/engines/queen/resource.cpp
+++ b/engines/queen/resource.cpp
@@ -179,6 +179,8 @@ bool Resource::detectVersion(DetectedGameVersion *ver, Common::File *f) {
case 'E':
if (Common::parseLanguage(ConfMan.get("language")) == Common::RU_RUS) {
ver->language = Common::RU_RUS;
+ } else if (Common::parseLanguage(ConfMan.get("language")) == Common::GR_GRE) {
+ ver->language = Common::GR_GRE;
} else {
ver->language = Common::EN_ANY;
}