From 4ce583b141190e2aaa7d4e4d295acecb18eecffc Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 12 Jun 2017 20:32:30 -0500 Subject: [PATCH] Movie import - import smv's with snes9x sync settings but lsmv as bsnes, dont' set profile of bsnes. Set the core toggle based on which movie being imported (this could be annoying but so can a movie load exception) --- BizHawk.Client.Common/movie/import/MovieImport.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.Common/movie/import/MovieImport.cs b/BizHawk.Client.Common/movie/import/MovieImport.cs index 8c1aa55cc9..af8e69db52 100644 --- a/BizHawk.Client.Common/movie/import/MovieImport.cs +++ b/BizHawk.Client.Common/movie/import/MovieImport.cs @@ -12,6 +12,7 @@ using BizHawk.Emulation.Common; using BizHawk.Client.Common.MovieConversionExtensions; using BizHawk.Emulation.Cores.Nintendo.SNES; +using BizHawk.Emulation.Cores.Nintendo.SNES9X; namespace BizHawk.Client.Common { @@ -1490,8 +1491,9 @@ namespace BizHawk.Client.Common m.Header[HeaderKeys.PLATFORM] = platform; - var ss = new LibsnesCore.SnesSyncSettings { Profile = "Compatibility" }; + var ss = new LibsnesCore.SnesSyncSettings(); m.SyncSettingsJson = ConfigService.SaveWithType(ss); + Global.Config.SNES_InSnes9x = true; // This could be annoying to a user if they don't notice we set this preference, but the alternative is for the movie import to fail to load the movie return m; } @@ -2324,9 +2326,9 @@ namespace BizHawk.Client.Common r.Close(); fs.Close(); - var ss = new LibsnesCore.SnesSyncSettings { Profile = "Compatibility" }; + var ss = new Snes9x.SyncSettings(); m.SyncSettingsJson = ConfigService.SaveWithType(ss); - + Global.Config.SNES_InSnes9x = true; // This could be annoying to a user if they don't notice we set this preference, but the alternative is for the movie import to fail to load the movie return m; }