diff options
author | Gregory Montoir | 2003-12-04 10:54:26 +0000 |
---|---|---|
committer | Gregory Montoir | 2003-12-04 10:54:26 +0000 |
commit | 8c330b712398f80cf69b1e544fb5ff6fd6f437e3 (patch) | |
tree | 46232455485084cf4142c42afa75562ce72256ce | |
parent | b6c01b8c739575f80a45b843bf9292326c52e502 (diff) | |
download | scummvm-rg350-8c330b712398f80cf69b1e544fb5ff6fd6f437e3.tar.gz scummvm-rg350-8c330b712398f80cf69b1e544fb5ff6fd6f437e3.tar.bz2 scummvm-rg350-8c330b712398f80cf69b1e544fb5ff6fd6f437e3.zip |
in original DOS version, characters *can* walk in last room
svn-id: r11492
-rw-r--r-- | queen/walk.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/queen/walk.cpp b/queen/walk.cpp index 078d52d2d3..e287faa627 100644 --- a/queen/walk.cpp +++ b/queen/walk.cpp @@ -357,13 +357,6 @@ int16 Walk::movePerson(const Person *pp, int16 endx, int16 endy, uint16 curImage return 0; } - // no longer walk characters in ending - if (_logic->currentRoom() == 69) { - if (strcmp(pp->name, "SPARKY") == 0 || strcmp(pp->name, "FAYE") == 0) { - return 0; - } - } - int16 can = 0; initWalkData(); @@ -434,7 +427,6 @@ void Walk::stopJoe() { _graphics->bob(0)->moving = false; _joeInterrupted = true; - } |