aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/detection.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2010-01-22 03:43:57 +0000
committerMatthew Hoops2010-01-22 03:43:57 +0000
commitc04f8d00b15d0ebedce6b27e60e64a48f9259e42 (patch)
treec1c135e9a34e23184aba7ffa8979dd8ed663c495 /engines/mohawk/detection.cpp
parent716a2bf2423dac64dff5080fc59d75a9ae0e3723 (diff)
downloadscummvm-rg350-c04f8d00b15d0ebedce6b27e60e64a48f9259e42.tar.gz
scummvm-rg350-c04f8d00b15d0ebedce6b27e60e64a48f9259e42.tar.bz2
scummvm-rg350-c04f8d00b15d0ebedce6b27e60e64a48f9259e42.zip
Rename MohawkFile to MohawkArchive and OldMohawkFile to LivingBooksArchive_v1 (the latter originally having an ambiguous meaning) and move them to resource.* Also, renaming the Living Books game types to remove the ambiguous old/new.
svn-id: r47429
Diffstat (limited to 'engines/mohawk/detection.cpp')
-rw-r--r--engines/mohawk/detection.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/engines/mohawk/detection.cpp b/engines/mohawk/detection.cpp
index 2b6405cfd0..b00b312892 100644
--- a/engines/mohawk/detection.cpp
+++ b/engines/mohawk/detection.cpp
@@ -581,7 +581,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_NO_FLAGS,
Common::GUIO_NONE
},
- GType_NEWLIVINGBOOKS,
+ GType_LIVINGBOOKSV3,
0,
0
},
@@ -597,7 +597,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_NO_FLAGS,
Common::GUIO_NONE
},
- GType_NEWLIVINGBOOKS,
+ GType_LIVINGBOOKSV3,
0,
0
},
@@ -660,7 +660,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -675,7 +675,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -690,7 +690,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_NO_FLAGS,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
0,
0
},
@@ -705,7 +705,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -720,7 +720,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -735,7 +735,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -750,7 +750,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -765,7 +765,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -780,7 +780,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -795,7 +795,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -810,7 +810,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -825,7 +825,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_DEMO,
Common::GUIO_NONE
},
- GType_OLDLIVINGBOOKS,
+ GType_LIVINGBOOKSV1,
GF_DEMO,
0
},
@@ -840,7 +840,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_NO_FLAGS,
Common::GUIO_NONE
},
- GType_NEWLIVINGBOOKS,
+ GType_LIVINGBOOKSV3,
0,
0
},
@@ -856,7 +856,7 @@ static const MohawkGameDescription gameDescriptions[] = {
ADGF_NO_FLAGS,
Common::GUIO_NONE
},
- GType_NEWLIVINGBOOKS,
+ GType_LIVINGBOOKSV3,
0,
0
},
@@ -1047,8 +1047,8 @@ bool MohawkMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGa
case Mohawk::GType_RIVEN:
*engine = new Mohawk::MohawkEngine_Riven(syst, gd);
break;
- case Mohawk::GType_OLDLIVINGBOOKS:
- case Mohawk::GType_NEWLIVINGBOOKS:
+ case Mohawk::GType_LIVINGBOOKSV1:
+ case Mohawk::GType_LIVINGBOOKSV3:
*engine = new Mohawk::MohawkEngine_LivingBooks(syst, gd);
break;
case Mohawk::GType_ZOOMBINI: