* Pull Genre info for .nfo files.

This commit is contained in:
Justin Maggard 2010-10-05 20:45:42 +00:00
parent 6ec5255d60
commit 786d86c366

View File

@ -222,6 +222,10 @@ parse_nfo(const char * path, metadata_t * m)
if( val )
m->date = strdup(val);
val = GetValueFromNameValueList(&xml, "genre");
if( val )
m->genre = strdup(val);
ClearNameValueList(&xml);
fclose(nfo);
}