Respect LogKey of loaded movie for playback

This commit is contained in:
YoshiRulz 2021-05-25 08:49:18 +10:00
parent 38a223ffbd
commit 817701856c
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

2
src/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs Normal file → Executable file
View File

@ -144,7 +144,7 @@ namespace BizHawk.Client.Common
{ {
if (frame < FrameCount && frame >= 0) if (frame < FrameCount && frame >= 0)
{ {
_adapter ??= new Bk2Controller(Session.MovieController.Definition); _adapter ??= new Bk2Controller(LogKey, Session.MovieController.Definition);
_adapter.SetFromMnemonic(Log[frame]); _adapter.SetFromMnemonic(Log[frame]);
return _adapter; return _adapter;
} }