diff --git a/gdx-video-desktop/src/com/badlogic/gdx/video/CommonVideoPlayerDesktop.java b/gdx-video-desktop/src/com/badlogic/gdx/video/CommonVideoPlayerDesktop.java index a4e45f7..771b668 100644 --- a/gdx-video-desktop/src/com/badlogic/gdx/video/CommonVideoPlayerDesktop.java +++ b/gdx-video-desktop/src/com/badlogic/gdx/video/CommonVideoPlayerDesktop.java @@ -152,12 +152,8 @@ private int readFileContents (ByteBuffer buffer) { @Override public boolean update () { if (decoder != null && (!paused || isFirstFrame) && playing) { - if (!paused && currentVideoTime == 0) { - // Since startTime is 0, this means that we should now display the first frame of the video, and set the - // time. - if (audio != null) { - audio.play(); - } + if (!paused && audio != null) { + audio.play(); } boolean newFrame = false;