mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
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:
parent
cc004a45f1
commit
d418c05614
|
@ -26,6 +26,7 @@ namespace PlatformIds
|
|||
"apple2", // Apple II
|
||||
"apple2gs", // Apple IIGS
|
||||
"arcade", // Arcade
|
||||
"arcadia", // Emerson Arcadia 2001
|
||||
"astrocde", // Bally Astrocade
|
||||
"atari2600", // Atari 2600
|
||||
"atari5200", // Atari 5200
|
||||
|
@ -45,6 +46,7 @@ namespace PlatformIds
|
|||
"channelf", // Fairchild Channel F
|
||||
"coco", // Tandy Color Computer
|
||||
"colecovision", // ColecoVision
|
||||
"crvision", // VTech CreatiVision
|
||||
"daphne", // Daphne Arcade Laserdisc Emulator
|
||||
"dos", // DOS (PC)
|
||||
"dragon32", // Dragon 32
|
||||
|
|
|
@ -25,6 +25,7 @@ namespace PlatformIds
|
|||
APPLE_II,
|
||||
APPLE_IIGS,
|
||||
ARCADE,
|
||||
ARCADIA_2001,
|
||||
BALLY_ASTROCADE,
|
||||
ATARI_2600,
|
||||
ATARI_5200,
|
||||
|
@ -44,6 +45,7 @@ namespace PlatformIds
|
|||
FAIRCHILD_CHANNELF,
|
||||
TANDY_COLOR_COMPUTER,
|
||||
COLECOVISION,
|
||||
VTECH_CREATIVISION,
|
||||
DAPHNE,
|
||||
DOS,
|
||||
DRAGON32,
|
||||
|
|
|
@ -44,6 +44,7 @@ namespace
|
|||
{AMSTRAD_CPC, "4914"},
|
||||
{APPLE_II, "4942"},
|
||||
{ARCADE, "23"},
|
||||
{ARCADIA_2001, "4963"},
|
||||
{BALLY_ASTROCADE, "4968"},
|
||||
{ATARI_800, "4943"},
|
||||
{ATARI_2600, "22"},
|
||||
|
|
|
@ -36,6 +36,7 @@ namespace
|
|||
{APPLE_II, 86},
|
||||
{APPLE_IIGS, 217},
|
||||
{ARCADE, 75},
|
||||
{ARCADIA_2001, 94},
|
||||
{BALLY_ASTROCADE, 44},
|
||||
{ATARI_800, 43},
|
||||
{ATARI_2600, 26},
|
||||
|
@ -50,6 +51,7 @@ namespace
|
|||
{BBC_MICRO, 37},
|
||||
{CAVESTORY, 135},
|
||||
{COLECOVISION, 48},
|
||||
{VTECH_CREATIVISION, 241},
|
||||
{COMMODORE_64, 66},
|
||||
{COMMODORE_CDTV, 129},
|
||||
{COMMODORE_VIC20, 73},
|
||||
|
|
|
@ -142,7 +142,7 @@ namespace Utils
|
|||
|
||||
return returnValue;
|
||||
|
||||
#else // __unix__
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue