From: <nor...@us...> - 2007-06-12 23:05:08
|
Revision: 527 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=527&view=rev Author: northern_sky Date: 2007-06-12 16:05:03 -0700 (Tue, 12 Jun 2007) Log Message: ----------- genrebug fixed Modified Paths: -------------- trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/Imports/AllGameScraper.cs Modified: trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/Imports/AllGameScraper.cs =================================================================== --- trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/Imports/AllGameScraper.cs 2007-06-12 22:59:18 UTC (rev 526) +++ trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/Imports/AllGameScraper.cs 2007-06-12 23:05:03 UTC (rev 527) @@ -169,12 +169,12 @@ match = Regex.Match(tableData[4], regexpYear, RegexOptions.IgnoreCase); newGame.Year = match.Groups["year"].Value; - match = Regex.Match(tableData[5], regexpGameStyle, RegexOptions.IgnoreCase); - newGame.Style = match.Groups["style"].Value; - - match = Regex.Match(tableData[6], regexpGenre, RegexOptions.IgnoreCase); + match = Regex.Match(tableData[5], regexpGenre, RegexOptions.IgnoreCase); newGame.MainGenre = match.Groups["genre"].Value; + match = Regex.Match(tableData[6], regexpGameStyle, RegexOptions.IgnoreCase); + newGame.SubGenre = match.Groups["style"].Value; + match = Regex.Match(tableData[7], regexpPlatform, RegexOptions.IgnoreCase); newGame.Platform = match.Groups["platform"].Value; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |