mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-05 09:39:58 +00:00
Fixed last tick count not being set on movie load
This commit is contained in:
parent
87b3975f7c
commit
250cc9d5a0
@ -836,7 +836,7 @@ void LoadInput(const std::string& filename)
|
|||||||
g_totalFrames = tmpHeader.frameCount;
|
g_totalFrames = tmpHeader.frameCount;
|
||||||
g_totalLagCount = tmpHeader.lagCount;
|
g_totalLagCount = tmpHeader.lagCount;
|
||||||
g_totalInputCount = tmpHeader.inputCount;
|
g_totalInputCount = tmpHeader.inputCount;
|
||||||
g_totalTickCount = tmpHeader.tickCount;
|
g_totalTickCount = g_tickCountAtLastInput = tmpHeader.tickCount;
|
||||||
|
|
||||||
EnsureTmpInputSize((size_t)totalSavedBytes);
|
EnsureTmpInputSize((size_t)totalSavedBytes);
|
||||||
g_totalBytes = totalSavedBytes;
|
g_totalBytes = totalSavedBytes;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user