From 1009cdee8096323dc2d4a6702a93a320e4fb8d97 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Fri, 5 Feb 2021 17:38:21 +0100 Subject: [PATCH] Added support for scraping Daphne on TheGamesDB and Atari XE and BBC Micro on ScreenScraper. --- es-app/src/PlatformId.h | 2 +- es-app/src/scrapers/GamesDBJSONScraper.cpp | 1 + es-app/src/scrapers/ScreenScraper.cpp | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/es-app/src/PlatformId.h b/es-app/src/PlatformId.h index f51db0b5c..988d6aeec 100644 --- a/es-app/src/PlatformId.h +++ b/es-app/src/PlatformId.h @@ -97,7 +97,7 @@ namespace PlatformIds TANDY, ADVENTUREGAMESTUDIO, ASTROCADE, - BBCMICRO, + BBC_MICRO, CAVESTORY, DAPHNE, DRAGON32, diff --git a/es-app/src/scrapers/GamesDBJSONScraper.cpp b/es-app/src/scrapers/GamesDBJSONScraper.cpp index 7f3f63bd7..148222c1f 100644 --- a/es-app/src/scrapers/GamesDBJSONScraper.cpp +++ b/es-app/src/scrapers/GamesDBJSONScraper.cpp @@ -52,6 +52,7 @@ const std::map gamesdb_new_platformid_map { { CAVESTORY, "1" }, { COLECOVISION, "31" }, { COMMODORE_64, "40" }, + { DAPHNE, "23" }, { INTELLIVISION, "32" }, { MAC_OS, "37" }, { XBOX, "14" }, diff --git a/es-app/src/scrapers/ScreenScraper.cpp b/es-app/src/scrapers/ScreenScraper.cpp index 06185a48a..ed72891e6 100644 --- a/es-app/src/scrapers/ScreenScraper.cpp +++ b/es-app/src/scrapers/ScreenScraper.cpp @@ -43,8 +43,9 @@ const std::map screenscraper_platformid_map { { ATARI_JAGUAR_CD, 171 }, { ATARI_LYNX, 28 }, { ATARI_ST, 42}, + { ATARI_XE, 43 }, { ATOMISWAVE, 53 }, - // Missing Atari XE ? + { BBC_MICRO, 37 }, { CAVESTORY, 135 }, { COLECOVISION, 48 }, { COMMODORE_64, 66 },