tastudio: stop latching input in playback mode if new frames are generated
addresses #801
This commit is contained in:
parent
e7178297c8
commit
f1a617b047
|
@ -294,13 +294,16 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
private void HandleFrameLoopForRecordMode()
|
private void HandleFrameLoopForRecordMode()
|
||||||
{
|
{
|
||||||
if (MultiTrack.IsActive)
|
if (!(Movie is TasMovie) || !Movie.IsPlaying) // tasmovie is appended via recording frames, but we don't want it to latch input outside its inetrnal recording mode
|
||||||
{
|
{
|
||||||
LatchMultitrackPlayerInput(Global.MovieInputSourceAdapter, Global.MultitrackRewiringAdapter);
|
if (MultiTrack.IsActive)
|
||||||
}
|
{
|
||||||
else
|
LatchMultitrackPlayerInput(Global.MovieInputSourceAdapter, Global.MultitrackRewiringAdapter);
|
||||||
{
|
}
|
||||||
LatchInputFromPlayer(Global.MovieInputSourceAdapter);
|
else
|
||||||
|
{
|
||||||
|
LatchInputFromPlayer(Global.MovieInputSourceAdapter);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// the movie session makes sure that the correct input has been read and merged to its MovieControllerAdapter;
|
// the movie session makes sure that the correct input has been read and merged to its MovieControllerAdapter;
|
||||||
|
|
Loading…
Reference in New Issue