From 250cc9d5a00d47b56ea925102cccd4cf37f79139 Mon Sep 17 00:00:00 2001 From: Fog Date: Thu, 24 Jul 2014 20:49:43 -0400 Subject: [PATCH] Fixed last tick count not being set on movie load --- Source/Core/Core/Movie.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index a3ccdc8a77..1b9a22c933 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -836,7 +836,7 @@ void LoadInput(const std::string& filename) g_totalFrames = tmpHeader.frameCount; g_totalLagCount = tmpHeader.lagCount; g_totalInputCount = tmpHeader.inputCount; - g_totalTickCount = tmpHeader.tickCount; + g_totalTickCount = g_tickCountAtLastInput = tmpHeader.tickCount; EnsureTmpInputSize((size_t)totalSavedBytes); g_totalBytes = totalSavedBytes;