COMMON: Add Atari 8-bit platform

This commit is contained in:
Walter van Niftrik 2016-08-29 17:50:33 +02:00
parent 3ff6dfee8b
commit 51360ec6ab
2 changed files with 2 additions and 0 deletions

View File

@ -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 },

View File

@ -38,6 +38,7 @@ class String;
enum Platform {
kPlatformDOS,
kPlatformAmiga,
kPlatformAtari8Bit,
kPlatformAtariST,
kPlatformMacintosh,
kPlatformFMTowns,