- fixed intro movie playback with sound disabled.

It would never do anything because the sound callback cannot make it advance if it isn't called.
Of course without sound it isn't properly synchronized - still better than nothing.
This commit is contained in:
Christoph Oelckers 2019-12-13 20:08:42 +01:00
parent b86d773005
commit 93fc2cb10a

View file

@ -269,7 +269,7 @@ void PlayMovie(const char* fileName)
// audio is king for sync - if the backend doesn't need any more samples yet,
// don't process any more movie file data.
if (!bServedSample) {
if (!bServedSample && hFx > 0) {
continue;
}