diff options
author | Eugene Sandulenko | 2016-09-02 23:41:29 +0200 |
---|---|---|
committer | GitHub | 2016-09-02 23:41:29 +0200 |
commit | 029e1c0d1a7dd0e7f5e01d4c895e6674c64e4c9f (patch) | |
tree | 006490b2c3ef7e9d1dae8d49e8f067d7ea4e4375 /common | |
parent | b1657f47483c3ad4fe653fe7ddd837842c07a708 (diff) | |
parent | 51360ec6abf90dc81830ec181bdb5c634209e81a (diff) | |
download | scummvm-rg350-029e1c0d1a7dd0e7f5e01d4c895e6674c64e4c9f.tar.gz scummvm-rg350-029e1c0d1a7dd0e7f5e01d4c895e6674c64e4c9f.tar.bz2 scummvm-rg350-029e1c0d1a7dd0e7f5e01d4c895e6674c64e4c9f.zip |
Merge pull request #820 from waltervn/platform-atari8bit
COMMON: Add Atari 8-bit platform
Diffstat (limited to 'common')
-rw-r--r-- | common/platform.cpp | 1 | ||||
-rw-r--r-- | common/platform.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/common/platform.cpp b/common/platform.cpp index 280185d862..6898993b33 100644 --- a/common/platform.cpp +++ b/common/platform.cpp @@ -31,6 +31,7 @@ const PlatformDescription g_platforms[] = { { "3do", "3do", "3do", "3DO", kPlatform3DO }, { "acorn", "acorn", "acorn", "Acorn", kPlatformAcorn }, { "amiga", "ami", "amiga", "Amiga", kPlatformAmiga }, + { "atari8", "atari8", "atari8", "Atari 8-bit", kPlatformAtari8Bit }, { "atari", "atari-st", "st", "Atari ST", kPlatformAtariST }, { "c64", "c64", "c64", "Commodore 64", kPlatformC64 }, { "pc", "dos", "ibm", "DOS", kPlatformDOS }, diff --git a/common/platform.h b/common/platform.h index 15bcddb62e..d6284be713 100644 --- a/common/platform.h +++ b/common/platform.h @@ -38,6 +38,7 @@ class String; enum Platform { kPlatformDOS, kPlatformAmiga, + kPlatformAtari8Bit, kPlatformAtariST, kPlatformMacintosh, kPlatformFMTowns, |