Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #670 from RisingFog/tickcount
Fixed last tick count not being set on movie load
  • Loading branch information
lioncash committed Jul 25, 2014
2 parents 87b3975 + 250cc9d commit 4745af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Movie.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 4745af5

Please sign in to comment.