Sam and Max is now completable. There are two graphical glitches, and the game will freeze if you either look at the dragon heart, or set off the alarm in Bumpusville. These two bugs are still being worked on.

svn-id: r3667
This commit is contained in:
James Brown 2002-03-06 15:55:31 +00:00
parent be61a19dc5
commit f0ad130ffa

View File

@ -732,7 +732,7 @@ int Scumm::getVerbEntrypoint(int obj, int entry) {
void Scumm::push(int a) {
assert(_scummStackPos >=0 && _scummStackPos <= ARRAYSIZE(_scummStack)-1);
assert(_scummStackPos >=0 && _scummStackPos <= ARRAYSIZE(_scummStack));
_scummStack[_scummStackPos++] = a;
}