From 2f2878d139e974047cf0e076806646f3ef313181 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 18 Nov 2018 11:26:15 -0600 Subject: [PATCH] Input display - show the last frame of hte movie's input when in movie replay mode --- BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs b/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs index 01107e0435..d0befae66e 100644 --- a/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs +++ b/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs @@ -337,7 +337,8 @@ namespace BizHawk.Client.EmuHawk if (Global.Config.DisplayInput && !Global.Game.IsNullInstance) { - if (Global.MovieSession.Movie.IsPlaying && !Global.MovieSession.Movie.IsFinished) + if ((Global.MovieSession.Movie.IsPlaying && !Global.MovieSession.Movie.IsFinished) + || (Global.MovieSession.Movie.IsFinished && Global.Emulator.Frame == Global.MovieSession.Movie.InputLogLength)) // Account for the last frame of the movie, the movie state is immediately "Finished" here but we still want to show the input { var input = InputStrMovie(); var x = GetX(g, Global.Config.DispInpx, Global.Config.DispInpanchor, input);