diff options
| author | Martin Kiewitz | 2010-10-26 20:56:55 +0000 | 
|---|---|---|
| committer | Martin Kiewitz | 2010-10-26 20:56:55 +0000 | 
| commit | bd7d9965e9f2048a53e7fe9668d0c2a05cf2fc81 (patch) | |
| tree | 459f67f057a898be3d407ffa126bea48e4a7207d | |
| parent | d078a4d235117696d889a6f52a0b2c6a0569d6ea (diff) | |
| download | scummvm-rg350-bd7d9965e9f2048a53e7fe9668d0c2a05cf2fc81.tar.gz scummvm-rg350-bd7d9965e9f2048a53e7fe9668d0c2a05cf2fc81.tar.bz2 scummvm-rg350-bd7d9965e9f2048a53e7fe9668d0c2a05cf2fc81.zip | |
SCI: removing unneeded call
was a left-over from debugging
svn-id: r53857
| -rw-r--r-- | engines/sci/graphics/animate.cpp | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/engines/sci/graphics/animate.cpp b/engines/sci/graphics/animate.cpp index 159f791ebd..92bdbd30c3 100644 --- a/engines/sci/graphics/animate.cpp +++ b/engines/sci/graphics/animate.cpp @@ -286,7 +286,6 @@ void GfxAnimate::fill(byte &old_picNotValid) {  			//  This special handling is not included in the other SCI1.1 interpreters and MUST NOT be  			//  checked in those cases, otherwise we will break games (e.g. EcoQuest 2, room 200)  			if ((g_sci->getGameId() == GID_HOYLE4) && (it->scaleSignal & kScaleSignalHoyle4SpecialHandling)) { -				view->getCelRect(it->loopNo, it->celNo, it->x, it->y, it->z, it->celRect);  				it->celRect.left = readSelectorValue(_s->_segMan, curObject, SELECTOR(nsLeft));  				it->celRect.top = readSelectorValue(_s->_segMan, curObject, SELECTOR(nsTop));  				it->celRect.right = readSelectorValue(_s->_segMan, curObject, SELECTOR(nsRight)); | 
