Add support to built-in thegamesdb.net scraper for TurboGrafx CD platform.

This commit is contained in:
Keith F. Kelly 2018-11-28 11:09:52 -08:00
parent a7a22e478d
commit 8c4c024de1
3 changed files with 6 additions and 3 deletions

View file

@ -61,7 +61,8 @@ namespace PlatformIds
"psvita", "psvita",
"psp", // playstation portable "psp", // playstation portable
"snes", // super nintendo entertainment system "snes", // super nintendo entertainment system
"pcengine", // turbografx-16/pcengine "pcengine", // (aka turbografx-16) HuCards only
"pcenginecd", // (aka turbografx-16) CD-ROMs only
"wonderswan", "wonderswan",
"wonderswancolor", "wonderswancolor",
"zxspectrum", "zxspectrum",

View file

@ -62,7 +62,8 @@ namespace PlatformIds
PLAYSTATION_VITA, PLAYSTATION_VITA,
PLAYSTATION_PORTABLE, PLAYSTATION_PORTABLE,
SUPER_NINTENDO, SUPER_NINTENDO,
TURBOGRAFX_16, // (also PC Engine) TURBOGRAFX_16, // (aka PC Engine) HuCards only
TURBOGRAFX_CD, // (aka PC Engine) CD-ROMs only
WONDERSWAN, WONDERSWAN,
WONDERSWAN_COLOR, WONDERSWAN_COLOR,
ZX_SPECTRUM, ZX_SPECTRUM,

View file

@ -64,7 +64,8 @@ const std::map<PlatformId, const char*> gamesdb_platformid_map {
{ PLAYSTATION_VITA, "Sony Playstation Vita" }, { PLAYSTATION_VITA, "Sony Playstation Vita" },
{ PLAYSTATION_PORTABLE, "Sony Playstation Portable" }, { PLAYSTATION_PORTABLE, "Sony Playstation Portable" },
{ SUPER_NINTENDO, "Super Nintendo (SNES)" }, { SUPER_NINTENDO, "Super Nintendo (SNES)" },
{ TURBOGRAFX_16, "TurboGrafx 16" }, { TURBOGRAFX_16, "TurboGrafx 16" }, // HuCards only
{ TURBOGRAFX_CD, "TurboGrafx CD" }, // CD-ROMs only
{ WONDERSWAN, "WonderSwan" }, { WONDERSWAN, "WonderSwan" },
{ WONDERSWAN_COLOR, "WonderSwan Color" }, { WONDERSWAN_COLOR, "WonderSwan Color" },
{ ZX_SPECTRUM, "Sinclair ZX Spectrum" }, { ZX_SPECTRUM, "Sinclair ZX Spectrum" },