- fixed: The help screens were stretched on 16:9 displays

- fixed: The bunny scroller did not advance its animation to the end when aborted.


SVN r3102 (trunk)
This commit is contained in:
Christoph Oelckers 2011-01-14 09:22:09 +00:00
commit 5e5ddd8cc8
3 changed files with 15 additions and 9 deletions

View file

@ -612,6 +612,17 @@ void DIntermissionScreenScroller::Init(FIntermissionAction *desc, bool first)
mScrollDir = static_cast<FIntermissionActionScroller*>(desc)->mScrollDir;
}
int DIntermissionScreenScroller::Responder (event_t *ev)
{
int res = Super::Responder(ev);
if (res == -1)
{
mBackground = mSecondPic;
mTicker = mScrollDelay + mScrollTime;
}
return res;
}
void DIntermissionScreenScroller::Drawer ()
{
FTexture *tex = TexMan[mFirstPic];