add Famicom Disk System to scraper

This commit is contained in:
zefie 2017-05-22 14:28:04 -04:00 committed by zefie
parent 3a49f6abe5
commit 54931f12bd
3 changed files with 3 additions and 0 deletions

View file

@ -35,6 +35,7 @@ namespace PlatformIds
"n3ds", // nintendo 3DS
"n64", // nintendo 64
"nds", // nintendo DS
"fds", // Famicom Disk System
"nes", // nintendo entertainment system
"gb", // game boy
"gba", // game boy advance

View file

@ -35,6 +35,7 @@ namespace PlatformIds
NINTENDO_3DS,
NINTENDO_64,
NINTENDO_DS,
FAMICOM_DISK_SYSTEM,
NINTENDO_ENTERTAINMENT_SYSTEM,
GAME_BOY,
GAME_BOY_ADVANCE,

View file

@ -35,6 +35,7 @@ const std::map<PlatformId, const char*> gamesdb_platformid_map = boost::assign::
(NINTENDO_3DS, "Nintendo 3DS")
(NINTENDO_64, "Nintendo 64")
(NINTENDO_DS, "Nintendo DS")
(FAMICOM_DISK_SYSTEM, "Famicom Disk System")
(NINTENDO_ENTERTAINMENT_SYSTEM, "Nintendo Entertainment System (NES)")
(GAME_BOY, "Nintendo Game Boy")
(GAME_BOY_ADVANCE, "Nintendo Game Boy Advance")