This commit is contained in:
adelikat 2020-06-07 09:01:30 -05:00
parent 7ff91c234e
commit ce2381ea54
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ namespace BizHawk.Client.Common
public class InputManager
{
// the movie will be spliced in between these if it is present
public CopyControllerAdapter MovieInputSourceAdapter { get; } = new CopyControllerAdapter();
public CopyControllerAdapter MovieInputSourceAdapter { get; } = new CopyControllerAdapter();
public CopyControllerAdapter MovieOutputHardpoint { get; } = new CopyControllerAdapter();
public MultitrackRewiringControllerAdapter MultitrackRewiringAdapter { get; } = new MultitrackRewiringControllerAdapter();

View File

@ -50,7 +50,7 @@ namespace BizHawk.Client.Common
public bool NewMovieQueued => _queuedMovie != null;
public string QueuedSyncSettings => _queuedMovie.SyncSettingsJson;
public IMovieController MovieController { get; set; } = new Bk2Controller("", NullController.Instance.Definition);
public IMovieController MovieController { get; private set; } = new Bk2Controller("", NullController.Instance.Definition);
public MultitrackRecorder MultiTrack { get; } = new MultitrackRecorder();