diff --git a/es-core/src/components/VideoComponent.cpp b/es-core/src/components/VideoComponent.cpp index bb64930b9..b0ebf299f 100644 --- a/es-core/src/components/VideoComponent.cpp +++ b/es-core/src/components/VideoComponent.cpp @@ -233,6 +233,9 @@ void VideoComponent::update(int deltaTime) return; } + if (mVideoPath == "") + return; + // Hack to prevent the video from starting to play if the static image was shown when paused. if (mConfig.showSnapshotDelay && mPaused) mStartTime = SDL_GetTicks() + mConfig.startDelay;