From 618951403dc59456c39276dc08ef2c13e4dbdb05 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 14 May 2017 10:13:22 -0500 Subject: [PATCH] drag & drop - default unknown file extensions to rom --- BizHawk.Client.EmuHawk/FileLoader.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/FileLoader.cs b/BizHawk.Client.EmuHawk/FileLoader.cs index 5ee23d0df4..2a3ff94fb3 100644 --- a/BizHawk.Client.EmuHawk/FileLoader.cs +++ b/BizHawk.Client.EmuHawk/FileLoader.cs @@ -217,8 +217,15 @@ namespace BizHawk.Client.EmuHawk bool executable = false; var archiveHandler = new SevenZipSharpArchiveHandler(); - if (String.IsNullOrEmpty(archive) && archiveHandler.CheckSignature(file, out offset, out executable)) + if (string.IsNullOrEmpty(archive) && archiveHandler.CheckSignature(file, out offset, out executable)) + { sortedFiles[LoadOrdering.ROM].Add(fileInformation); + } + else + { + // adelikat: adding this hack to restore the default behavior that unrecognized files are treated like roms + sortedFiles[LoadOrdering.ROM].Add(fileInformation); + } /* * This is where handling archives would go.