Fixed the case (should have detected "guid", not "GUID") for parsing the guid, preventing an extra space from showing up in converted FM2 files.
This commit is contained in:
parent
8bc250e7dd
commit
24a27d543a
|
@ -158,7 +158,7 @@ namespace BizHawk.MultiClient
|
|||
m.SetRerecords(rerecordCount);
|
||||
}
|
||||
else if (line.StartsWith("guid"))
|
||||
m.Header.SetHeaderLine(MovieHeader.GUID, ParseHeader(line, "GUID"));
|
||||
m.Header.SetHeaderLine(MovieHeader.GUID, ParseHeader(line, "guid"));
|
||||
else if (line.StartsWith("StartsFromSavestate"))
|
||||
{
|
||||
// If this movie starts from a savestate, we can't support it.
|
||||
|
|
Loading…
Reference in New Issue