diff --git a/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs b/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs index 5e90a7723a..cbac570bf6 100644 --- a/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs +++ b/src/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs @@ -48,17 +48,7 @@ namespace BizHawk.Client.Common return true; } - public bool PreLoadHeaderAndLength(HawkFile hawkFile) - { - var file = new FileInfo(Filename); - if (!file.Exists) - { - return false; - } - - Filename = file.FullName; - return Load(true); - } + public bool PreLoadHeaderAndLength() => Load(true); protected virtual void Write(string fn, bool isBackup = false) { diff --git a/src/BizHawk.Client.Common/movie/interfaces/IMovie.cs b/src/BizHawk.Client.Common/movie/interfaces/IMovie.cs index bf45b76b6d..26fb0ac111 100644 --- a/src/BizHawk.Client.Common/movie/interfaces/IMovie.cs +++ b/src/BizHawk.Client.Common/movie/interfaces/IMovie.cs @@ -1,7 +1,5 @@ using System.Collections.Generic; using System.IO; - -using BizHawk.Common; using BizHawk.Emulation.Common; namespace BizHawk.Client.Common @@ -98,7 +96,7 @@ namespace BizHawk.Client.Common /// Loads from the HawkFile the minimal amount of information needed to determine Header info and Movie length /// This method is intended to be more performant than a full load /// - bool PreLoadHeaderAndLength(HawkFile hawkFile); + bool PreLoadHeaderAndLength(); /// /// Gets the header key value pairs stored in the movie file diff --git a/src/BizHawk.Client.EmuHawk/movie/PlayMovie.cs b/src/BizHawk.Client.EmuHawk/movie/PlayMovie.cs index 0b10bd4cee..20e98522bc 100644 --- a/src/BizHawk.Client.EmuHawk/movie/PlayMovie.cs +++ b/src/BizHawk.Client.EmuHawk/movie/PlayMovie.cs @@ -136,7 +136,7 @@ namespace BizHawk.Client.EmuHawk try { - movie.PreLoadHeaderAndLength(hf); + movie.PreLoadHeaderAndLength(); // Don't do this from browse if (movie.Hash == _game.Hash