diff options
| author | lukaslw | 2014-07-21 16:36:16 +0200 | 
|---|---|---|
| committer | lukaslw | 2014-07-21 16:36:16 +0200 | 
| commit | 6a4ea9ef878773057ed7c1897ac93f7959c995e6 (patch) | |
| tree | 4ff3948781defe689fee063e5af4d4a2d7b2d6ef | |
| parent | d024d998ab5d9a1babc3f1a977dd3101515b7294 (diff) | |
| download | scummvm-rg350-6a4ea9ef878773057ed7c1897ac93f7959c995e6.tar.gz scummvm-rg350-6a4ea9ef878773057ed7c1897ac93f7959c995e6.tar.bz2 scummvm-rg350-6a4ea9ef878773057ed7c1897ac93f7959c995e6.zip | |
PRINCE: Destination direction of hero movement
| -rw-r--r-- | engines/prince/hero.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/prince/hero.cpp b/engines/prince/hero.cpp index a2a1bd3f85..c52420deb6 100644 --- a/engines/prince/hero.cpp +++ b/engines/prince/hero.cpp @@ -872,7 +872,7 @@ void Hero::showHero() {  						_phase = 0;  						_state = TURN; -						if (_destDirection) { +						if (!_destDirection) {  							_destDirection = _lastDirection;  						} | 
