From 6bab4edbb05751c581e94d7c93c4fcceb197c8b9 Mon Sep 17 00:00:00 2001 From: "Keith F. Kelly" Date: Tue, 27 Nov 2018 19:20:26 -0800 Subject: [PATCH] Add support to built-in thegamesdb.net scraper for TurboGrafx CD platform. --- es-app/src/PlatformId.cpp | 1 + es-app/src/PlatformId.h | 3 ++- es-app/src/scrapers/GamesDBScraper.cpp | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/es-app/src/PlatformId.cpp b/es-app/src/PlatformId.cpp index 2242396d34..eb5f8b2b76 100644 --- a/es-app/src/PlatformId.cpp +++ b/es-app/src/PlatformId.cpp @@ -59,6 +59,7 @@ namespace PlatformIds "psp", // playstation portable "snes", // super nintendo entertainment system "pcengine", // turbografx-16/pcengine + "pcenginecd", // turbografx-16/pcengine CD-ROM "wonderswan", "wonderswancolor", "zxspectrum", diff --git a/es-app/src/PlatformId.h b/es-app/src/PlatformId.h index 59c2156448..1789692c9d 100644 --- a/es-app/src/PlatformId.h +++ b/es-app/src/PlatformId.h @@ -58,7 +58,8 @@ namespace PlatformIds PLAYSTATION_VITA, PLAYSTATION_PORTABLE, SUPER_NINTENDO, - TURBOGRAFX_16, // (also PC Engine) + TURBOGRAFX_16, // (also PC Engine) hucards only + TURBOGRAFX_CD, // (also PC Engine) CD-ROM only WONDERSWAN, WONDERSWAN_COLOR, ZX_SPECTRUM, diff --git a/es-app/src/scrapers/GamesDBScraper.cpp b/es-app/src/scrapers/GamesDBScraper.cpp index f627804117..cf994121ff 100644 --- a/es-app/src/scrapers/GamesDBScraper.cpp +++ b/es-app/src/scrapers/GamesDBScraper.cpp @@ -59,6 +59,7 @@ const std::map gamesdb_platformid_map = boost::assign:: (PLAYSTATION_PORTABLE, "Sony PSP") (SUPER_NINTENDO, "Super Nintendo (SNES)") (TURBOGRAFX_16, "TurboGrafx 16") + (TURBOGRAFX_CD, "TurboGrafx CD") (WONDERSWAN, "WonderSwan") (WONDERSWAN_COLOR, "WonderSwan Color") (ZX_SPECTRUM, "Sinclair ZX Spectrum");