From 1d45a6f3797931f36fd77bb6850c6795f9fb3711 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 24 Jul 2014 23:29:31 +0000 Subject: [PATCH] When importing GMV, the system id should be Genesis, not GEN --- 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 bbb2e76093..d14f566960 100644 --- a/BizHawk.Client.Common/movie/MovieImport.cs +++ b/BizHawk.Client.Common/movie/MovieImport.cs @@ -929,7 +929,7 @@ namespace BizHawk.Client.Common fs.Close(); return null; } - m.Header[HeaderKeys.PLATFORM] = "GEN"; + m.Header[HeaderKeys.PLATFORM] = "Genesis"; // 00F ASCII-encoded GMV file format version. The most recent is 'A'. (?) string version = r.ReadStringFixedAscii(1); m.Comments.Add(MOVIEORIGIN + " .GMV version " + version);