aboutsummaryrefslogtreecommitdiff
path: root/engines/saga
diff options
context:
space:
mode:
authorEugene Sandulenko2006-04-08 23:12:56 +0000
committerEugene Sandulenko2006-04-08 23:12:56 +0000
commit5a2ad04a9eb48f0fec484861d09830b398db700d (patch)
tree67b8d9485284fa3d3a34b20de6974b54ab6b1985 /engines/saga
parent3add3dae958e8cbb29e046f9f24e00d907dab319 (diff)
downloadscummvm-rg350-5a2ad04a9eb48f0fec484861d09830b398db700d.tar.gz
scummvm-rg350-5a2ad04a9eb48f0fec484861d09830b398db700d.tar.bz2
scummvm-rg350-5a2ad04a9eb48f0fec484861d09830b398db700d.zip
Introduced language EN_ANY used for general English game entries. EN_USA and
EN_GRB should be used for games which have both variants. Currently it is MM NES and BASS. All other are switched to EN_ANY. svn-id: r21702
Diffstat (limited to 'engines/saga')
-rw-r--r--engines/saga/game.cpp36
-rw-r--r--engines/saga/ite_introproc.cpp38
2 files changed, 37 insertions, 37 deletions
diff --git a/engines/saga/game.cpp b/engines/saga/game.cpp
index f44a736f0e..a8bac4bddd 100644
--- a/engines/saga/game.cpp
+++ b/engines/saga/game.cpp
@@ -918,7 +918,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
0, // features
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformPC,
},
@@ -941,7 +941,7 @@ static GameDescription gameDescriptions[] = {
ARRAYSIZE(ITEMacPatch_Files),
ITEMacPatch_Files,
GF_BIG_ENDIAN_DATA | GF_WYRMKEEP | GF_CD_FX | GF_SCENE_SUBSTITUTES,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformMacintosh,
},
@@ -964,7 +964,7 @@ static GameDescription gameDescriptions[] = {
ARRAYSIZE(ITEMacPatch_Files),
ITEMacPatch_Files,
GF_BIG_ENDIAN_DATA | GF_WYRMKEEP | GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformMacintosh,
},
@@ -987,7 +987,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
GF_BIG_ENDIAN_DATA | GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformMacintosh,
},
@@ -1010,7 +1010,7 @@ static GameDescription gameDescriptions[] = {
ARRAYSIZE(ITEMacPatch_Files),
ITEMacPatch_Files,
GF_BIG_ENDIAN_DATA | GF_WYRMKEEP | GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformMacintosh,
},
@@ -1034,7 +1034,7 @@ static GameDescription gameDescriptions[] = {
ARRAYSIZE(ITELinPatch_Files),
ITELinPatch_Files,
GF_WYRMKEEP | GF_CD_FX | GF_SCENE_SUBSTITUTES,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformLinux,
},
@@ -1057,7 +1057,7 @@ static GameDescription gameDescriptions[] = {
ARRAYSIZE(ITEWinPatch2_Files),
ITEWinPatch2_Files,
GF_WYRMKEEP | GF_CD_FX | GF_SCENE_SUBSTITUTES,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformWindows,
},
@@ -1080,7 +1080,7 @@ static GameDescription gameDescriptions[] = {
ARRAYSIZE(ITEWinPatch1_Files),
ITEWinPatch1_Files,
GF_WYRMKEEP | GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformWindows,
},
@@ -1103,7 +1103,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
GF_WYRMKEEP | GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformUnknown,
},
@@ -1126,7 +1126,7 @@ static GameDescription gameDescriptions[] = {
ARRAYSIZE(ITELinPatch_Files),
ITELinPatch_Files,
GF_WYRMKEEP | GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformLinux,
},
@@ -1149,7 +1149,7 @@ static GameDescription gameDescriptions[] = {
ARRAYSIZE(ITEWinPatch1_Files),
ITEWinPatch1_Files,
GF_WYRMKEEP | GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformWindows,
},
@@ -1172,7 +1172,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformPC,
},
@@ -1195,7 +1195,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformPC,
},
@@ -1264,7 +1264,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
GF_CD_FX,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformPC,
},
@@ -1333,7 +1333,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
0,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformPC,
},
@@ -1356,7 +1356,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
0,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformPC,
},
@@ -1379,7 +1379,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
0,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformPC,
},
@@ -1402,7 +1402,7 @@ static GameDescription gameDescriptions[] = {
0,
NULL,
0,
- Common::EN_USA,
+ Common::EN_ANY,
Common::kPlatformPC,
},
diff --git a/engines/saga/ite_introproc.cpp b/engines/saga/ite_introproc.cpp
index abe2deb4a5..759fe7326e 100644
--- a/engines/saga/ite_introproc.cpp
+++ b/engines/saga/ite_introproc.cpp
@@ -42,7 +42,7 @@
namespace Saga {
using Common::UNK_LANG;
-using Common::EN_USA;
+using Common::EN_ANY;
using Common::DE_DEU;
LoadSceneParams ITE_IntroList[] = {
@@ -723,14 +723,14 @@ int Scene::ITEIntroValleyProc(int param) {
Event *q_event;
static const IntroCredit credits[] = {
- {EN_USA, kITEAny, kCHeader, "Producer"},
+ {EN_ANY, kITEAny, kCHeader, "Producer"},
{DE_DEU, kITEAny, kCHeader, "Produzent"},
{UNK_LANG, kITEAny, kCText, "Walter Hochbrueckner"},
- {EN_USA, kITEAny, kCHeader, "Executive Producer"},
+ {EN_ANY, kITEAny, kCHeader, "Executive Producer"},
{DE_DEU, kITEAny, kCHeader, "Ausf\201hrender Produzent"},
{UNK_LANG, kITEAny, kCText, "Robert McNally"},
{UNK_LANG, kITEWyrmKeep, kCHeader, "2nd Executive Producer"},
- {EN_USA, kITENotWyrmKeep, kCHeader, "Publisher"},
+ {EN_ANY, kITENotWyrmKeep, kCHeader, "Publisher"},
{DE_DEU, kITENotWyrmKeep, kCHeader, "Herausgeber"},
{UNK_LANG, kITEAny, kCText, "Jon Van Caneghem"}
};
@@ -829,13 +829,13 @@ int Scene::ITEIntroTreeHouseProc(int param) {
Event *q_event;
static const IntroCredit credits1[] = {
- {EN_USA, kITEAny, kCHeader, "Game Design"},
+ {EN_ANY, kITEAny, kCHeader, "Game Design"},
{DE_DEU, kITEAny, kCHeader, "Spielentwurf"},
{UNK_LANG, kITEAny, kCText, "Talin, Joe Pearce, Robert McNally"},
- {EN_USA, kITEAny, kCText, "and Carolly Hauksdottir"},
+ {EN_ANY, kITEAny, kCText, "and Carolly Hauksdottir"},
{DE_DEU, kITEAny, kCText, "und Carolly Hauksdottir"},
- {EN_USA, kITEAny, kCHeader, "Screenplay and Dialog"},
- {EN_USA, kITEAny, kCText, "Robert Leh, Len Wein, and Bill Rotsler"},
+ {EN_ANY, kITEAny, kCHeader, "Screenplay and Dialog"},
+ {EN_ANY, kITEAny, kCText, "Robert Leh, Len Wein, and Bill Rotsler"},
{DE_DEU, kITEAny, kCHeader, "Geschichte und Dialoge"},
{DE_DEU, kITEAny, kCText, "Robert Leh, Len Wein und Bill Rotsler"}
};
@@ -845,17 +845,17 @@ int Scene::ITEIntroTreeHouseProc(int param) {
static const IntroCredit credits2[] = {
{UNK_LANG, kITEWyrmKeep, kCHeader, "Art Direction"},
{UNK_LANG, kITEWyrmKeep, kCText, "Allison Hershey"},
- {EN_USA, kITEAny, kCHeader, "Art"},
+ {EN_ANY, kITEAny, kCHeader, "Art"},
{DE_DEU, kITEAny, kCHeader, "Grafiken"},
{UNK_LANG, kITEWyrmKeep, kCText, "Ed Lacabanne, Glenn Price, April Lee,"},
{UNK_LANG, kITENotWyrmKeep, kCText, "Edward Lacabanne, Glenn Price, April Lee,"},
{UNK_LANG, kITEWyrmKeep, kCText, "Lisa Sample, Brian Dowrick, Reed Waller,"},
- {EN_USA, kITEWyrmKeep, kCText, "Allison Hershey and Talin"},
+ {EN_ANY, kITEWyrmKeep, kCText, "Allison Hershey and Talin"},
{DE_DEU, kITEWyrmKeep, kCText, "Allison Hershey und Talin"},
- {EN_USA, kITENotWyrmKeep, kCText, "Lisa Iennaco, Brian Dowrick, Reed"},
- {EN_USA, kITENotWyrmKeep, kCText, "Waller, Allison Hershey and Talin"},
+ {EN_ANY, kITENotWyrmKeep, kCText, "Lisa Iennaco, Brian Dowrick, Reed"},
+ {EN_ANY, kITENotWyrmKeep, kCText, "Waller, Allison Hershey and Talin"},
{DE_DEU, kITEAny, kCText, "Waller, Allison Hershey und Talin"},
- {EN_USA, kITENotWyrmKeep, kCHeader, "Art Direction"},
+ {EN_ANY, kITENotWyrmKeep, kCHeader, "Art Direction"},
{DE_DEU, kITENotWyrmKeep, kCHeader, "Grafische Leitung"},
{UNK_LANG, kITENotWyrmKeep, kCText, "Allison Hershey"}
};
@@ -918,16 +918,16 @@ int Scene::ITEIntroFairePathProc(int param) {
Event *q_event;
static const IntroCredit credits1[] = {
- {EN_USA, kITEAny, kCHeader, "Programming"},
+ {EN_ANY, kITEAny, kCHeader, "Programming"},
{DE_DEU, kITEAny, kCHeader, "Programmiert von"},
{UNK_LANG, kITEAny, kCText, "Talin, Walter Hochbrueckner,"},
- {EN_USA, kITEAny, kCText, "Joe Burks and Robert Wiggins"},
+ {EN_ANY, kITEAny, kCText, "Joe Burks and Robert Wiggins"},
{DE_DEU, kITEAny, kCText, "Joe Burks und Robert Wiggins"},
- {EN_USA, kITEPCCD | kITEWyrmKeep, kCHeader, "Additional Programming"},
- {EN_USA, kITEPCCD | kITEWyrmKeep, kCText, "John Bolton"},
+ {EN_ANY, kITEPCCD | kITEWyrmKeep, kCHeader, "Additional Programming"},
+ {EN_ANY, kITEPCCD | kITEWyrmKeep, kCText, "John Bolton"},
{UNK_LANG, kITEMac, kCHeader, "Macintosh Version"},
{UNK_LANG, kITEMac, kCText, "Michael McNally and Robert McNally"},
- {EN_USA, kITEAny, kCHeader, "Music and Sound"},
+ {EN_ANY, kITEAny, kCHeader, "Music and Sound"},
{DE_DEU, kITEAny, kCHeader, "Musik und Sound"},
{UNK_LANG, kITEAny, kCText, "Matt Nathan"}
};
@@ -935,7 +935,7 @@ int Scene::ITEIntroFairePathProc(int param) {
int n_credits1 = ARRAYSIZE(credits1);
static const IntroCredit credits2[] = {
- {EN_USA, kITEAny, kCHeader, "Directed by"},
+ {EN_ANY, kITEAny, kCHeader, "Directed by"},
{DE_DEU, kITEAny, kCHeader, "Regie"},
{UNK_LANG, kITEAny, kCText, "Talin"}
};