diff --git a/src/PlatformId.h b/src/PlatformId.h index 40483dbb3..ca22fe511 100644 --- a/src/PlatformId.h +++ b/src/PlatformId.h @@ -49,7 +49,8 @@ namespace PlatformIds PLAYSTATION_PORTABLE = 41, SUPER_NINTENDO = 42, TURBOGRAFX_16 = 43, + ZX_SPECTRUM = 44, - PLATFORM_COUNT = 44 + PLATFORM_COUNT = 45 }; } diff --git a/src/scrapers/GamesDBScraper.cpp b/src/scrapers/GamesDBScraper.cpp index 83a04d3f2..10be75df4 100644 --- a/src/scrapers/GamesDBScraper.cpp +++ b/src/scrapers/GamesDBScraper.cpp @@ -52,7 +52,8 @@ const std::map 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 GamesDBScraper::getResultsAsync(const ScraperSearchParams& params)