Skip to content
Permalink
Browse files
Merge pull request #8522 from stenzek/fifoci-ffmpeg
FrameDump: Set first_frame if movie frame number <= 1
  • Loading branch information
stenzek committed Dec 22, 2019
2 parents 10e98d0 + 6a0067f commit 8a50d9c
Showing 1 changed file with 1 addition and 1 deletion.
@@ -443,7 +443,7 @@ FrameDump::Frame FrameDump::FetchState(u64 ticks)
{
Frame state;
state.ticks = ticks;
state.first_frame = Movie::GetCurrentFrame() < 1;
state.first_frame = Movie::GetCurrentFrame() <= 1;
state.ticks_per_second = SystemTimers::GetTicksPerSecond();
state.savestate_index = s_savestate_index;
return state;

0 comments on commit 8a50d9c

Please sign in to comment.