mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-26 08:05:38 +00:00
Add support to built-in thegamesdb.net scraper for TurboGrafx CD platform.
This commit is contained in:
parent
a7a22e478d
commit
8c4c024de1
|
@ -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",
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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" },
|
||||||
|
|
Loading…
Reference in a new issue