aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-05-10 03:03:28 +0000
committerTravis Howell2005-05-10 03:03:28 +0000
commit239e7ae062e9d54aae9524e56cb9aa09d96c7b3e (patch)
treef03517df341cf77858cbc09fe12debbc68d021e6 /scumm
parent169ff06f09d77ffde8b9219ca229279f6d2d57d7 (diff)
downloadscummvm-rg350-239e7ae062e9d54aae9524e56cb9aa09d96c7b3e.tar.gz
scummvm-rg350-239e7ae062e9d54aae9524e56cb9aa09d96c7b3e.tar.bz2
scummvm-rg350-239e7ae062e9d54aae9524e56cb9aa09d96c7b3e.zip
Add heversions for dutch versions.
Add dutch freddi1 svn-id: r18023
Diffstat (limited to 'scumm')
-rw-r--r--scumm/resource.cpp2
-rw-r--r--scumm/resource_v7he.cpp6
-rw-r--r--scumm/scumm-md5.h5
-rw-r--r--scumm/scumm.cpp10
4 files changed, 16 insertions, 7 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index 668e2b3431..e8c5423f8a 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -1093,7 +1093,7 @@ void ScummEngine_v7::readMAXS(int blockSize) {
}
void ScummEngine_v6::readMAXS(int blockSize) {
- debug(9, "readMAXS: MAXS has blocksize %d", blockSize);
+ debug(0, "readMAXS: MAXS has blocksize %d", blockSize);
_numVariables = _fileHandle->readUint16LE();
_fileHandle->readUint16LE();
diff --git a/scumm/resource_v7he.cpp b/scumm/resource_v7he.cpp
index 2002ef8b99..22e628c396 100644
--- a/scumm/resource_v7he.cpp
+++ b/scumm/resource_v7he.cpp
@@ -1662,7 +1662,7 @@ void ScummEngine_v70he::readGlobalObjects() {
}
void ScummEngine_v99he::readMAXS(int blockSize) {
- debug(9, "readMAXS: MAXS has blocksize %d", blockSize);
+ debug(0, "readMAXS: MAXS has blocksize %d", blockSize);
_numVariables = _fileHandle->readUint16LE();
_fileHandle->readUint16LE();
@@ -1693,7 +1693,7 @@ void ScummEngine_v99he::readMAXS(int blockSize) {
}
void ScummEngine_v90he::readMAXS(int blockSize) {
- debug(9, "readMAXS: MAXS has blocksize %d", blockSize);
+ debug(0, "readMAXS: MAXS has blocksize %d", blockSize);
_numVariables = _fileHandle->readUint16LE();
_fileHandle->readUint16LE();
@@ -1724,7 +1724,7 @@ void ScummEngine_v90he::readMAXS(int blockSize) {
}
void ScummEngine_v72he::readMAXS(int blockSize) {
- debug(9, "readMAXS: MAXS has blocksize %d", blockSize);
+ debug(0, "readMAXS: MAXS has blocksize %d", blockSize);
_numVariables = _fileHandle->readUint16LE();
_fileHandle->readUint16LE();
diff --git a/scumm/scumm-md5.h b/scumm/scumm-md5.h
index 7c41b38e56..5212118f51 100644
--- a/scumm/scumm-md5.h
+++ b/scumm/scumm-md5.h
@@ -1,5 +1,5 @@
/*
- This file was generated by the md5table tool on Tue May 10 02:20:29 2005
+ This file was generated by the md5table tool on Tue May 10 02:58:16 2005
DO NOT EDIT MANUALLY!
*/
@@ -172,7 +172,7 @@ static const MD5Table md5table[] = {
{ "697c9b7c55a05d8199c48b48e379d2c8", "puttmoon", Common::HB_ISR, Common::kPlatformPC },
{ "69ea626f1f87eecb78ea0d6c6b983a1d", "monkey2", Common::IT_ITA, Common::kPlatformPC },
{ "6a30a07f353a75cdc602db27d73e1b42", "puttputt", Common::EN_USA, Common::kPlatformWindows },
- { "6af2419fe3db5c2fdb091ae4e5833770", "racedemo", Common::EN_USA, Common::kPlatformUnknown },
+ { "6af2419fe3db5c2fdb091ae4e5833770", "racedemo", Common::NL_NLD, Common::kPlatformUnknown },
{ "6b19d0e25cbf720d05822379b8b90ed9", "timedemo", Common::NL_NLD, Common::kPlatformWindows },
{ "6b257bb2827dd894b8109a50a1a18b5a", "FF5Demo", Common::NL_NLD, Common::kPlatformWindows },
{ "6b3ec67da214f558dc5ceaa2acd47453", "indy3EGA", Common::EN_USA, Common::kPlatformPC },
@@ -280,6 +280,7 @@ static const MD5Table md5table[] = {
{ "bd126753de619a495f9f22adc951c8d5", "monkey2", Common::IT_ITA, Common::kPlatformPC },
{ "bf8b52fdd9a69c67f34e8e9fec72661c", "farmdemo", Common::EN_USA, Common::kPlatformWindows },
{ "bfdf584b01503f0762baded581f6a0a2", "SoccerMLS", Common::EN_USA, Common::kPlatformWindows },
+ { "c0039ad982999c92d0de81910d640fa0", "freddi", Common::NL_NLD, Common::kPlatformWindows },
{ "c13225cb1bbd3bc9fe578301696d8021", "game", Common::EN_USA, Common::kPlatformUnknown },
{ "c24c490373aeb48fbd54caa8e7ae376d", "loom", Common::DE_DEU, Common::kPlatformAtariST },
{ "c25755b08a8d0d47695e05f1e2111bfc", "f4-demo", Common::EN_USA, Common::kPlatformWindows },
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 59331ef8f3..78a9e188a6 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -420,6 +420,8 @@ static const ScummGameSettings multiple_versions_md5_settings[] = {
{"22c9eb04455440131ffc157aeb8d40a8", "Fatty Bear's Birthday Surprise (Windows Demo)", GID_FBEAR, 6, 70, 13, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformWindows, 0, 0},
+ {"c0039ad982999c92d0de81910d640fa0", "Freddi Fish 1: The Case of the Missing Kelp Seeds", GID_HEGAME, 6, 71, 30, MDT_NONE,
+ GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0},
{"d4cccb5af88f3e77f370896e9ba8c5f9", "Freddi Fish 1: The Case of the Missing Kelp Seeds", GID_HEGAME, 6, 71, 30, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0},
{"084ed0fa98a6d1e9368d67fe9cfbd417", "Freddi Fish 1: The Case of the Missing Kelp Seeds (Demo) (puttputt cd)", GID_HEGAME, 6, 71, 13, MDT_NONE,
@@ -441,6 +443,8 @@ static const ScummGameSettings multiple_versions_md5_settings[] = {
GF_NEW_COSTUMES | GF_MULTIPLE_VERSIONS, Common::kPlatformUnknown, 0, 0},
{"78bd5f036ea35a878b74e4f47941f784", "Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch (Updated Ru)", GID_FREDDI4, 6, 99, 57, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0}, // FIXME: number of actors
+ {"499c958affc394f2a3868f1eb568c3ee", "Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch (Updated Demo)", GID_HEGAME, 6, 99, 57, MDT_NONE,
+ GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0},
{"ebd324dcf06a4c49e1ba5c231eee1060", "Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch (Updated Demo)", GID_HEGAME, 6, 99, 57, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0},
@@ -486,8 +490,10 @@ static const ScummGameSettings multiple_versions_md5_settings[] = {
{"a561d2e2413cc1c71d5a1bf87bf493ea", "Pajama Sam's Lost & Found (Updated)", GID_HEGAME, 6, 100, 61, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES | GF_HE_CURSORLESS, Common::kPlatformUnknown, 0, 0},
- {"6af2419fe3db5c2fdb091ae4e5833770", "Putt-Putt Enters the Race (Demo Alt)", GID_FREDDI4, 6, 98, 61, MDT_NONE,
+ {"6af2419fe3db5c2fdb091ae4e5833770", "Putt-Putt Enters the Race (Updated Demo)", GID_FREDDI4, 6, 98, 61, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0}, // 500demo
+ {"aaa587701cde7e74692c68c1024b85eb", "Putt-Putt Enters the Race (Updated Demo)", GID_FREDDI4, 6, 98, 61, MDT_NONE,
+ GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0},
{"9c92eeaf517a31b7221ec2546ab669fd", "Putt-Putt Goes To The Moon (Windows)", GID_HEGAME, 6, 70, 13, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformWindows, 0, 0},
@@ -506,6 +512,8 @@ static const ScummGameSettings multiple_versions_md5_settings[] = {
{"a525c1753c1db5011c00417da37887ef", "Putt-Putt Travels Through Time (Updated)", GID_HEGAME, 6, 100, 31, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0},
+ {"fcb78ebecab2757264c590890c319cc5", "Putt-Putt Travels Through Time (Updated)", GID_HEGAME, 6, 100, 31, MDT_NONE,
+ GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0},
{"0ab19be9e2a3f6938226638b2a3744fe", "Putt-Putt Travels Through Time (Updated Demo)", GID_HEGAME, 6, 100, 31, MDT_NONE,
GF_USE_KEY | GF_NEW_COSTUMES, Common::kPlatformUnknown, 0, 0},