Fix < 3 sec transition times causing slideshow to get stuck

master
Richard Stanway 2015-04-09 13:05:42 +02:00
parent 60b78a0ec0
commit 897700b073
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public:
}
curTransitionTime += fSeconds;
if(curTransitionTime >= transitionTime)
if (!bTransitioning && curTransitionTime >= transitionTime)
{
curTransitionTime = 0.0f;