From ed49e58489a749ce021d2ca5e138767d36744809 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 29 Jun 2020 10:37:05 -0500 Subject: [PATCH] remove some references to multitrack in some comments --- src/BizHawk.Client.Common/inputAdapters/InputManager.cs | 2 +- src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/inputAdapters/InputManager.cs b/src/BizHawk.Client.Common/inputAdapters/InputManager.cs index 13d3dc9267..c3594c77be 100644 --- a/src/BizHawk.Client.Common/inputAdapters/InputManager.cs +++ b/src/BizHawk.Client.Common/inputAdapters/InputManager.cs @@ -8,7 +8,7 @@ namespace BizHawk.Client.Common // don't take my word for it, but here is a guide... // user -> Input -> ActiveController -> UDLR -> StickyXORPlayerInputAdapter -> TurboAdapter(TBD) -> Lua(?TBD?) -> .. - // .. -> MultitrackRewiringControllerAdapter -> MovieInputSourceAdapter -> (MovieSession) -> MovieOutputAdapter -> ControllerOutput(1) -> Game + // .. -> MovieInputSourceAdapter -> (MovieSession) -> MovieOutputAdapter -> ControllerOutput(1) -> Game // (1)->Input Display public class InputManager { diff --git a/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs b/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs index b73cae2300..545ce2eca4 100644 --- a/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs +++ b/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs @@ -129,7 +129,6 @@ namespace BizHawk.Client.Common public virtual void Truncate(int frame) { - // This is a bad way to do multitrack logic, pass the info in instead of going to the global if (frame < Log.Count) { Log.RemoveRange(frame, Log.Count - frame);