MADS: Add a safeguard in doFrame

This commit is contained in:
Strangerke 2015-01-31 12:53:35 +01:00
parent 772cbc122d
commit 0fcd78391b

View File

@ -550,7 +550,7 @@ void AnimationView::doFrame() {
scene._cyclingActive = _nextCyclingActive;
}
if (++_scrollFrameCtr >= _currentAnimation->_header._scrollTicks) {
if (_currentAnimation && (++_scrollFrameCtr >= _currentAnimation->_header._scrollTicks)) {
_scrollFrameCtr = 0;
scroll();
}