mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-11 11:31:52 +02:00
Restores smoothing.
This commit is contained in:
parent
cf6a4c7d9a
commit
287e0c016d
@ -941,10 +941,16 @@ void CTerrainRect::showPath(const SDL_Rect * extRect)
|
||||
}
|
||||
void CTerrainRect::show(SDL_Surface * to)
|
||||
{
|
||||
CGI->mh->terrainRect
|
||||
(LOCPLINT->adventureInt->position, LOCPLINT->adventureInt->anim,
|
||||
&LOCPLINT->cb->getVisibilityMap(), true, LOCPLINT->adventureInt->heroAnim,
|
||||
to, &genRect(pos.h, pos.w, pos.x, pos.y), moveX, moveY);
|
||||
if(ADVOPT.smoothMove)
|
||||
CGI->mh->terrainRect
|
||||
(LOCPLINT->adventureInt->position, LOCPLINT->adventureInt->anim,
|
||||
&LOCPLINT->cb->getVisibilityMap(), true, LOCPLINT->adventureInt->heroAnim,
|
||||
to, &genRect(pos.h, pos.w, pos.x, pos.y), moveX, moveY);
|
||||
else
|
||||
CGI->mh->terrainRect
|
||||
(LOCPLINT->adventureInt->position, LOCPLINT->adventureInt->anim,
|
||||
&LOCPLINT->cb->getVisibilityMap(), true, LOCPLINT->adventureInt->heroAnim,
|
||||
to, &genRect(pos.h, pos.w, pos.x, pos.y), 0, 0);
|
||||
|
||||
//SDL_BlitSurface(teren,&genRect(pos.h,pos.w,0,0),screen,&genRect(547,594,7,6));
|
||||
//SDL_FreeSurface(teren);
|
||||
|
Loading…
x
Reference in New Issue
Block a user