diff --git a/es-core/src/components/VideoComponent.cpp b/es-core/src/components/VideoComponent.cpp index 9d4fa6620..942354c3e 100644 --- a/es-core/src/components/VideoComponent.cpp +++ b/es-core/src/components/VideoComponent.cpp @@ -287,7 +287,7 @@ void VideoComponent::update(int deltaTime) if (mWindow->getGameLaunchedState()) return; - if (!mIsPlaying && mConfig.startDelay == 0) { + if (!mIsPlaying && (mConfig.startDelay == 0 || mStaticImagePath == "")) { startVideoStream(); } else if (mStartTime == 0 || SDL_GetTicks() > mStartTime) {