From e0aa4b15da740abf44de7f804e86c05a0763c6bd Mon Sep 17 00:00:00 2001 From: taotao54321 Date: Fri, 9 Mar 2012 12:10:41 +0000 Subject: [PATCH] Added *.fcm and *.mcm to the filter of "Import Movie" dialog. And some typo fix. --- BizHawk.MultiClient/MainForm.cs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 928750dda5..111ada1019 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -2526,12 +2526,14 @@ namespace BizHawk.MultiClient ofd.InitialDirectory = PathManager.GetRomsPath(Global.Emulator.SystemId); ofd.Multiselect = true; ofd.Filter = FormatFilter( - "Movie Files", "*.fm2;*.mc2;*.mmv;*.fmv;*.gmv;", + "Movie Files", "*.fm2;*.mc2;*.mmv;*.fcm;*.fmv;*.gmv;*.mcm;", "FCEUX", "*.fm2", "PCEjin", "*.mc2", - "Dega", "*mmv", - "Famtasia", "*fmv", - "Gens", "*.gmv", + "Dega", "*.mmv", + "FCEU", "*.fcm", + "Famtasia", "*.fmv", + "Gens", "*.gmv", + "Mednafen", "*.mcm", "All Files", "*.*"); ofd.RestoreDirectory = false; @@ -2718,4 +2720,4 @@ namespace BizHawk.MultiClient Global.Config.SkipLagFrame ^= true; } } -} \ No newline at end of file +}