mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 08:09:19 +00:00
Merge pull request #8522 from stenzek/fifoci-ffmpeg
FrameDump: Set first_frame if movie frame number <= 1
This commit is contained in:
commit
8a50d9c540
1 changed files with 1 additions and 1 deletions
|
@ -443,7 +443,7 @@ FrameDump::Frame FrameDump::FetchState(u64 ticks)
|
||||||
{
|
{
|
||||||
Frame state;
|
Frame state;
|
||||||
state.ticks = ticks;
|
state.ticks = ticks;
|
||||||
state.first_frame = Movie::GetCurrentFrame() < 1;
|
state.first_frame = Movie::GetCurrentFrame() <= 1;
|
||||||
state.ticks_per_second = SystemTimers::GetTicksPerSecond();
|
state.ticks_per_second = SystemTimers::GetTicksPerSecond();
|
||||||
state.savestate_index = s_savestate_index;
|
state.savestate_index = s_savestate_index;
|
||||||
return state;
|
return state;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue