Fix regression with IHNM.

Add IHNM demo MD5s. demo does not work at all yet

svn-id: r16365
This commit is contained in:
Eugene Sandulenko 2004-12-28 23:18:11 +00:00
parent cc18520fe5
commit db249a8fe1
2 changed files with 12 additions and 2 deletions

View File

@ -82,6 +82,11 @@ Actor::Actor(SagaEngine *vm) : _vm(vm) {
ActorData *actor; ActorData *actor;
debug(9, "Actor::Actor()"); debug(9, "Actor::Actor()");
if (_vm->_gameType == GType_IHNM) {
warning("Actors aren't implemented for IHNM yet");
return;
}
_centerActor = _protagonist = NULL; _centerActor = _protagonist = NULL;
_lastTickMsec = 0; _lastTickMsec = 0;

View File

@ -281,6 +281,11 @@ static GAME_MD5 game_md5[] = {
{ GID_IHNM_CD, "1f501ce4b72392bdd1d9ec38f6eec6da", "voices5.res" }, { GID_IHNM_CD, "1f501ce4b72392bdd1d9ec38f6eec6da", "voices5.res" },
{ GID_IHNM_CD, "f580ed7568c7d6ef34e934ba20adf834", "voices6.res" }, { GID_IHNM_CD, "f580ed7568c7d6ef34e934ba20adf834", "voices6.res" },
{ GID_IHNM_CD, "54b1f2013a075338ceb0e258d97808bd", "voicess.res" }, { GID_IHNM_CD, "54b1f2013a075338ceb0e258d97808bd", "voicess.res" },
{ GID_IHNM_DEMO, "46bbdc65d164ba7e89836a0935eec8e6", "scream.res" },
{ GID_IHNM_DEMO, "9626bda8978094ff9b29198bc1ed5f9a", "scripts.res" },
{ GID_IHNM_DEMO, "1c610d543f32ec8b525e3f652536f269", "sfx.res" },
{ GID_IHNM_DEMO, "3bbc16a8f741dbb511da506c660a0b54", "voicesd.res" },
}; };
static GAMEDESC GameDescs[] = { static GAMEDESC GameDescs[] = {
@ -514,8 +519,8 @@ static GAMEDESC GameDescs[] = {
&IHNM_Resources, &IHNM_Resources,
ARRAYSIZE(IHNMDEMO_GameFiles), ARRAYSIZE(IHNMDEMO_GameFiles),
IHNMDEMO_GameFiles, IHNMDEMO_GameFiles,
0, ARRAYSIZE(IHNMCD_GameFonts),
NULL, IHNMCD_GameFonts,
&IHNM_GameSound, &IHNM_GameSound,
GF_DEFAULT_TO_1X_SCALER GF_DEFAULT_TO_1X_SCALER
}, },