From 5c4e147da3ba1e4c26230ecf750076a9e3a9aa52 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 6 Oct 2012 22:14:10 +0000 Subject: [PATCH] fix loading a compressed archive containing a single .gbc file. the number of different places where you can find various extension lists is rather terrifying... --- BizHawk.MultiClient/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index c3f2d23596..d22aabeb38 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -1293,7 +1293,7 @@ namespace BizHawk.MultiClient if (path == null) return false; using (var file = new HawkFile()) { - string[] romExtensions = new string[] { "SMS", "SMC", "SFC", "PCE", "SGX", "GG", "SG", "BIN", "GEN", "MD", "SMD", "GB", "NES", "ROM", "INT" }; + string[] romExtensions = new string[] { "SMS", "SMC", "SFC", "PCE", "SGX", "GG", "SG", "BIN", "GEN", "MD", "SMD", "GB", "NES", "ROM", "INT", "GBC" }; //lets not use this unless we need to //file.NonArchiveExtensions = romExtensions;