diff options
author | johndoe123 | 2011-07-13 18:34:20 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2013-05-08 20:38:47 +0200 |
commit | b611b65bf42a3f2d710199fa69428ec1012a0108 (patch) | |
tree | bf6107ba3d858eb790005b75f3c32e2f8bb40f8a /engines | |
parent | ffe024844b2f97fe4e735603308e505a7bcd982d (diff) | |
download | scummvm-rg350-b611b65bf42a3f2d710199fa69428ec1012a0108.tar.gz scummvm-rg350-b611b65bf42a3f2d710199fa69428ec1012a0108.tar.bz2 scummvm-rg350-b611b65bf42a3f2d710199fa69428ec1012a0108.zip |
NEVERHOOD: Change addHitRect to use an explicit count
- This is since the alignment stuff didn't work and it's not worth it to investigate
- Add possibility to write out hardcoded message lists instead of reading from the exe for special lists
Diffstat (limited to 'engines')
-rw-r--r-- | engines/neverhood/gamemodule.cpp | 2 | ||||
-rw-r--r-- | engines/neverhood/klayman.cpp | 2 | ||||
-rw-r--r-- | engines/neverhood/scene.cpp | 2 | ||||
-rw-r--r-- | engines/neverhood/smackerplayer.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/engines/neverhood/gamemodule.cpp b/engines/neverhood/gamemodule.cpp index 4354797695..c2d3e6d887 100644 --- a/engines/neverhood/gamemodule.cpp +++ b/engines/neverhood/gamemodule.cpp @@ -33,7 +33,7 @@ GameModule::GameModule(NeverhoodEngine *vm) // Other initializations moved to actual engine class - // TODO .text:0048AD96 + // TODO // TODO Sound1ChList_sub_407F70(0x2D0031, 0x8861079); diff --git a/engines/neverhood/klayman.cpp b/engines/neverhood/klayman.cpp index 562624d57f..9acda937e2 100644 --- a/engines/neverhood/klayman.cpp +++ b/engines/neverhood/klayman.cpp @@ -58,7 +58,7 @@ Klayman::Klayman(NeverhoodEngine *vm, Entity *parentScene, int16 x, int16 y, int _status3(1), _parentScene(parentScene), _flagE2(false), _flagE3(false), _flagF6(false), _flagF7(false), _flagFA(false), _statusE0(0), _field114(0), _resourceHandle(-1), _soundFlag(false) { - // TODO .text:0041C4D3 DirtySurface + // TODO createSurface(surfacePriority, 320, 200); _x = x; _y = y; diff --git a/engines/neverhood/scene.cpp b/engines/neverhood/scene.cpp index 1aee786458..3851cfa3ad 100644 --- a/engines/neverhood/scene.cpp +++ b/engines/neverhood/scene.cpp @@ -178,7 +178,7 @@ Background *Scene::addBackground(Background *background) { void Scene::update() { if (_smkFileHash != 0) { - // TODO .text:0040138D + // TODO //**** ALL TODO _smackerPlayer = new SmackerPlayer(_vm, this, _smkFileHash, true, 0); _savedUpdateHandlerCb = _updateHandlerCb; diff --git a/engines/neverhood/smackerplayer.cpp b/engines/neverhood/smackerplayer.cpp index a13276a1f8..bbb0db144c 100644 --- a/engines/neverhood/smackerplayer.cpp +++ b/engines/neverhood/smackerplayer.cpp @@ -146,7 +146,7 @@ void SmackerPlayer::update() { } if (_doubleSurface) { - // TODO .text:0046422D mov byte ptr [eax+28h], 1 + // TODO } // TODO _vm->_screen->_skipUpdate = true; |