From a77988e9be3c0df3b1b51bb738e7454e736898f5 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 16 May 2020 14:13:49 -0500 Subject: [PATCH] RomLoader - remove redundant if check --- src/BizHawk.Client.Common/RomLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/RomLoader.cs b/src/BizHawk.Client.Common/RomLoader.cs index 6a0461ebb8..2089632315 100644 --- a/src/BizHawk.Client.Common/RomLoader.cs +++ b/src/BizHawk.Client.Common/RomLoader.cs @@ -837,7 +837,7 @@ namespace BizHawk.Client.Common rom = new RomGame(file); game = rom.GameInfo; } - else if (ext != null) // most extensions + else { rom = new RomGame(file);