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",
"amiga",
"arcade",
"amstradcpc",
"apple2",
"arcade",
"atari800",
"atari2600",
"atari5200",

View file

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