Skip to content

Commit 8c4c024

Browse files
committed
Add support to built-in thegamesdb.net scraper for TurboGrafx CD platform.
1 parent a7a22e4 commit 8c4c024

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

es-app/src/PlatformId.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ namespace PlatformIds
6161
"psvita",
6262
"psp", // playstation portable
6363
"snes", // super nintendo entertainment system
64-
"pcengine", // turbografx-16/pcengine
64+
"pcengine", // (aka turbografx-16) HuCards only
65+
"pcenginecd", // (aka turbografx-16) CD-ROMs only
6566
"wonderswan",
6667
"wonderswancolor",
6768
"zxspectrum",

es-app/src/PlatformId.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ namespace PlatformIds
6262
PLAYSTATION_VITA,
6363
PLAYSTATION_PORTABLE,
6464
SUPER_NINTENDO,
65-
TURBOGRAFX_16, // (also PC Engine)
65+
TURBOGRAFX_16, // (aka PC Engine) HuCards only
66+
TURBOGRAFX_CD, // (aka PC Engine) CD-ROMs only
6667
WONDERSWAN,
6768
WONDERSWAN_COLOR,
6869
ZX_SPECTRUM,

es-app/src/scrapers/GamesDBScraper.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ const std::map<PlatformId, const char*> gamesdb_platformid_map {
6464
{ PLAYSTATION_VITA, "Sony Playstation Vita" },
6565
{ PLAYSTATION_PORTABLE, "Sony Playstation Portable" },
6666
{ SUPER_NINTENDO, "Super Nintendo (SNES)" },
67-
{ TURBOGRAFX_16, "TurboGrafx 16" },
67+
{ TURBOGRAFX_16, "TurboGrafx 16" }, // HuCards only
68+
{ TURBOGRAFX_CD, "TurboGrafx CD" }, // CD-ROMs only
6869
{ WONDERSWAN, "WonderSwan" },
6970
{ WONDERSWAN_COLOR, "WonderSwan Color" },
7071
{ ZX_SPECTRUM, "Sinclair ZX Spectrum" },

0 commit comments

Comments
 (0)