From a19791a2126b6c6dcc5e7a47e44a65fa0823fa84 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 11 Jul 2020 15:57:08 -0500 Subject: [PATCH] Fm2Import - warn about ignoring the famicom port, instead of a full error, apparently movies can have this port set, but to none, so importing the movie can still be successful, for example: http://tasvideos.org/6739S.html, fixes #1989 --- src/BizHawk.Client.Common/movie/import/Fm2Import.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/movie/import/Fm2Import.cs b/src/BizHawk.Client.Common/movie/import/Fm2Import.cs index db1db6abb8..7d627871a2 100644 --- a/src/BizHawk.Client.Common/movie/import/Fm2Import.cs +++ b/src/BizHawk.Client.Common/movie/import/Fm2Import.cs @@ -139,8 +139,7 @@ namespace BizHawk.Client.Common { if (ParseHeader(line, "port2") == "1") { - Result.Errors.Add("Famicom port not yet supported"); - break; + Result.Warnings.Add("Famicom port detected but not yet supported, ignoring"); } } else if (line.ToLower().StartsWith("fourscore"))