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:
brandman211 2012-07-03 16:04:17 +00:00
parent 8bc250e7dd
commit 24a27d543a
1 changed files with 1 additions and 1 deletions

View File

@ -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.