Added ZX Spectrum to PlatformIds.h and TheGamesDB scraper.

This commit is contained in:
Aloshi 2014-05-14 17:24:01 -05:00
parent fe7f7f983b
commit 330f45d5fe
2 changed files with 4 additions and 2 deletions

View file

@ -49,7 +49,8 @@ namespace PlatformIds
PLAYSTATION_PORTABLE = 41,
SUPER_NINTENDO = 42,
TURBOGRAFX_16 = 43,
ZX_SPECTRUM = 44,
PLATFORM_COUNT = 44
PLATFORM_COUNT = 45
};
}

View file

@ -52,7 +52,8 @@ const std::map<PlatformId, const char*> gamesdb_platformid_map = boost::assign::
(PLAYSTATION_VITA, "Sony Playstation Vita")
(PLAYSTATION_PORTABLE, "Sony PSP")
(SUPER_NINTENDO, "Super Nintendo (SNES)")
(TURBOGRAFX_16, "TurboGrafx 16");
(TURBOGRAFX_16, "TurboGrafx 16")
(ZX_SPECTRUM, "Sinclair ZX Spectrum");
std::unique_ptr<ScraperSearchHandle> GamesDBScraper::getResultsAsync(const ScraperSearchParams& params)