Break everything. Seriously, a total cock-up. But also: Fix issue 358, duplicated input after a movie ends. Movie recording isn't obviously horribly busted from this, but just about anything movie related is now possibly busted, if you are looking for some mysterious regression in some movie feature, here's a good place to start!
This commit is contained in:
parent
1c2ac16456
commit
f88b5389c1
|
@ -25,7 +25,7 @@ namespace BizHawk.Client.Common
|
|||
|
||||
// connect the movie session before MovieOutputHardpoint if it is doing anything
|
||||
// otherwise connect the MovieInputSourceAdapter to it, effectively bypassing the movie session
|
||||
if (Global.MovieSession.Movie != null)
|
||||
if (Global.MovieSession.Movie.IsPlaying && Global.MovieSession.Movie.IsRecording)
|
||||
{
|
||||
Global.MovieOutputHardpoint.Source = Global.MovieSession.MovieControllerAdapter;
|
||||
}
|
||||
|
|
|
@ -255,6 +255,8 @@ namespace BizHawk.Client.Common
|
|||
{
|
||||
LatchInputFromLog();
|
||||
|
||||
InputManager.RewireInputChain();
|
||||
|
||||
if (Movie.IsRecording) // The movie end situation can cause the switch to record mode, in that case we need to capture some input for this frame
|
||||
{
|
||||
HandleFrameLoopForRecordMode();
|
||||
|
|
Loading…
Reference in New Issue