From a010a2919b95ebe0506377a66aed1549515e0004 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 19 Jul 2014 04:11:12 +0000 Subject: [PATCH] correct systemID in converted gmvs --- BizHawk.Client.Common/movie/MovieImport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/movie/MovieImport.cs b/BizHawk.Client.Common/movie/MovieImport.cs index d6d07cb227..62056839b6 100644 --- a/BizHawk.Client.Common/movie/MovieImport.cs +++ b/BizHawk.Client.Common/movie/MovieImport.cs @@ -934,7 +934,7 @@ namespace BizHawk.Client.Common fs.Close(); return null; } - m.Header[HeaderKeys.PLATFORM] = "Genesis"; + m.Header[HeaderKeys.PLATFORM] = "GEN"; // 00F ASCII-encoded GMV file format version. The most recent is 'A'. (?) string version = r.ReadStringFixedAscii(1); m.Comments.Add(MOVIEORIGIN + " .GMV version " + version);