Merge pull request #8347 from hosaka-corp/frame-advance-alignment

Align frame advance and movies to full field boundaries
This commit is contained in:
JosJuice
2019-11-19 19:26:35 +01:00
committed by GitHub
3 changed files with 11 additions and 1 deletions

View File

@ -856,9 +856,12 @@ void Callback_VideoCopiedToXFB(bool video_update)
{
if (video_update)
s_drawn_frame++;
}
// Called at field boundaries in `VideoInterface::Update()`
void FrameUpdate()
{
Movie::FrameUpdate();
if (s_frame_step)
{
s_frame_step = false;