fixed error (nw)

This commit is contained in:
Miodrag Milanovic 2015-12-31 17:52:46 +01:00
parent fe136aef44
commit 92f3a1d341

View File

@ -408,9 +408,9 @@ static int read_summary_log(const char *filename, int index)
}
/* look for the MAME header */
else if (strncmp(linestart, "MAME v", 10) == 0)
else if (strncmp(linestart, "MAME v", 6) == 0)
{
char *start = linestart + 10;
char *start = linestart + 6;
char *end;
/* find the end */