Added Amstrad CPC platform.

This commit is contained in:
Aloshi 2014-06-05 15:53:01 -05:00
parent 40df8d3189
commit c3252d082b
3 changed files with 8 additions and 1 deletions

View file

@ -10,8 +10,9 @@ namespace PlatformIds
"3do", "3do",
"amiga", "amiga",
"arcade", "amstradcpc",
"apple2", "apple2",
"arcade",
"atari800", "atari800",
"atari2600", "atari2600",
"atari5200", "atari5200",

View file

@ -10,6 +10,7 @@ namespace PlatformIds
THREEDO, // name can't start with a constant THREEDO, // name can't start with a constant
AMIGA, AMIGA,
AMSTRAD_CPC,
APPLE_II, APPLE_II,
ARCADE, ARCADE,
ATARI_800, ATARI_800,

View file

@ -11,13 +11,17 @@ using namespace PlatformIds;
const std::map<PlatformId, const char*> gamesdb_platformid_map = boost::assign::map_list_of const std::map<PlatformId, const char*> gamesdb_platformid_map = boost::assign::map_list_of
(THREEDO, "3DO") (THREEDO, "3DO")
(AMIGA, "Amiga") (AMIGA, "Amiga")
(AMSTRAD_CPC, "Amstrad CPC")
// missing apple2
(ARCADE, "Arcade") (ARCADE, "Arcade")
// missing atari 800
(ATARI_2600, "Atari 2600") (ATARI_2600, "Atari 2600")
(ATARI_5200, "Atari 5200") (ATARI_5200, "Atari 5200")
(ATARI_7800, "Atari 7800") (ATARI_7800, "Atari 7800")
(ATARI_JAGUAR, "Atari Jaguar") (ATARI_JAGUAR, "Atari Jaguar")
(ATARI_JAGUAR_CD, "Atari Jaguar CD") (ATARI_JAGUAR_CD, "Atari Jaguar CD")
(ATARI_LYNX, "Atari Lynx") (ATARI_LYNX, "Atari Lynx")
// missing atari ST/STE/Falcon
(ATARI_XE, "Atari XE") (ATARI_XE, "Atari XE")
(COLECOVISION, "Colecovision") (COLECOVISION, "Colecovision")
(COMMODORE_64, "Commodore 64") (COMMODORE_64, "Commodore 64")
@ -50,6 +54,7 @@ const std::map<PlatformId, const char*> gamesdb_platformid_map = boost::assign::
(PLAYSTATION, "Sony Playstation") (PLAYSTATION, "Sony Playstation")
(PLAYSTATION_2, "Sony Playstation 2") (PLAYSTATION_2, "Sony Playstation 2")
(PLAYSTATION_3, "Sony Playstation 3") (PLAYSTATION_3, "Sony Playstation 3")
(PLAYSTATION_4, "Sony Playstation 4")
(PLAYSTATION_VITA, "Sony Playstation Vita") (PLAYSTATION_VITA, "Sony Playstation Vita")
(PLAYSTATION_PORTABLE, "Sony PSP") (PLAYSTATION_PORTABLE, "Sony PSP")
(SUPER_NINTENDO, "Super Nintendo (SNES)") (SUPER_NINTENDO, "Super Nintendo (SNES)")