Added scraper support for the platforms arcadia (Emerson Arcadia 2001) and crvision (VTech CreatiVision).

Also removed an unnecessary code comment.
This commit is contained in:
Leon Styhre 2022-05-19 17:32:12 +02:00
parent cc004a45f1
commit d418c05614
5 changed files with 8 additions and 1 deletions

View file

@ -26,6 +26,7 @@ namespace PlatformIds
"apple2", // Apple II "apple2", // Apple II
"apple2gs", // Apple IIGS "apple2gs", // Apple IIGS
"arcade", // Arcade "arcade", // Arcade
"arcadia", // Emerson Arcadia 2001
"astrocde", // Bally Astrocade "astrocde", // Bally Astrocade
"atari2600", // Atari 2600 "atari2600", // Atari 2600
"atari5200", // Atari 5200 "atari5200", // Atari 5200
@ -45,6 +46,7 @@ namespace PlatformIds
"channelf", // Fairchild Channel F "channelf", // Fairchild Channel F
"coco", // Tandy Color Computer "coco", // Tandy Color Computer
"colecovision", // ColecoVision "colecovision", // ColecoVision
"crvision", // VTech CreatiVision
"daphne", // Daphne Arcade Laserdisc Emulator "daphne", // Daphne Arcade Laserdisc Emulator
"dos", // DOS (PC) "dos", // DOS (PC)
"dragon32", // Dragon 32 "dragon32", // Dragon 32

View file

@ -25,6 +25,7 @@ namespace PlatformIds
APPLE_II, APPLE_II,
APPLE_IIGS, APPLE_IIGS,
ARCADE, ARCADE,
ARCADIA_2001,
BALLY_ASTROCADE, BALLY_ASTROCADE,
ATARI_2600, ATARI_2600,
ATARI_5200, ATARI_5200,
@ -44,6 +45,7 @@ namespace PlatformIds
FAIRCHILD_CHANNELF, FAIRCHILD_CHANNELF,
TANDY_COLOR_COMPUTER, TANDY_COLOR_COMPUTER,
COLECOVISION, COLECOVISION,
VTECH_CREATIVISION,
DAPHNE, DAPHNE,
DOS, DOS,
DRAGON32, DRAGON32,

View file

@ -44,6 +44,7 @@ namespace
{AMSTRAD_CPC, "4914"}, {AMSTRAD_CPC, "4914"},
{APPLE_II, "4942"}, {APPLE_II, "4942"},
{ARCADE, "23"}, {ARCADE, "23"},
{ARCADIA_2001, "4963"},
{BALLY_ASTROCADE, "4968"}, {BALLY_ASTROCADE, "4968"},
{ATARI_800, "4943"}, {ATARI_800, "4943"},
{ATARI_2600, "22"}, {ATARI_2600, "22"},

View file

@ -36,6 +36,7 @@ namespace
{APPLE_II, 86}, {APPLE_II, 86},
{APPLE_IIGS, 217}, {APPLE_IIGS, 217},
{ARCADE, 75}, {ARCADE, 75},
{ARCADIA_2001, 94},
{BALLY_ASTROCADE, 44}, {BALLY_ASTROCADE, 44},
{ATARI_800, 43}, {ATARI_800, 43},
{ATARI_2600, 26}, {ATARI_2600, 26},
@ -50,6 +51,7 @@ namespace
{BBC_MICRO, 37}, {BBC_MICRO, 37},
{CAVESTORY, 135}, {CAVESTORY, 135},
{COLECOVISION, 48}, {COLECOVISION, 48},
{VTECH_CREATIVISION, 241},
{COMMODORE_64, 66}, {COMMODORE_64, 66},
{COMMODORE_CDTV, 129}, {COMMODORE_CDTV, 129},
{COMMODORE_VIC20, 73}, {COMMODORE_VIC20, 73},

View file

@ -142,7 +142,7 @@ namespace Utils
return returnValue; return returnValue;
#else // __unix__ #else
return 0; return 0;
#endif #endif
} }