Merge pull request #743 from fuzzie/apple2-platform

COMMON: Add Apple II platform
This commit is contained in:
Eugene Sandulenko 2016-04-02 23:08:39 +02:00
commit 98f0be39e2
2 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,7 @@ namespace Common {
const PlatformDescription g_platforms[] = {
{ "2gs", "2gs", "2gs", "Apple IIgs", kPlatformApple2GS },
{ "apple2", "apple2", "apple2", "Apple II", kPlatformApple2 },
{ "3do", "3do", "3do", "3DO", kPlatform3DO },
{ "acorn", "acorn", "acorn", "Acorn", kPlatformAcorn },
{ "amiga", "ami", "amiga", "Amiga", kPlatformAmiga },

View File

@ -50,6 +50,7 @@ enum Platform {
kPlatformSegaCD,
kPlatform3DO,
kPlatformPCEngine,
kPlatformApple2,
kPlatformApple2GS,
kPlatformPC98,
kPlatformWii,