DIRECTOR: Properly process kTransNone

This commit is contained in:
Eugene Sandulenko 2022-12-02 00:32:02 +01:00
parent 01d6d0fed9
commit 1f21583e12
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -543,6 +543,9 @@ void Window::playTransition(uint frame, uint16 transDuration, uint8 transArea, u
default:
warning("Window::playTransition(): Unhandled transition type %s %d %d", transProps[t.type].name, t.duration, t.chunkSize);
// fallthrough
case kTransNone:
stop = true;
break;
}