aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorPaul Gilbert2013-02-24 06:36:26 -0800
committerPaul Gilbert2013-02-24 06:36:26 -0800
commit86306893c8bde348fb9487d7ca331ebbe79a376f (patch)
treeac747fc3d2b2ea51eb2f3c735bc36e6e8b4cb544 /common
parent76bf7b7c04931c3a7304f3c004221eaf4da05b3a (diff)
parent79bbd015ab30740f4630b5fa707b6983106a14ee (diff)
downloadscummvm-rg350-86306893c8bde348fb9487d7ca331ebbe79a376f.tar.gz
scummvm-rg350-86306893c8bde348fb9487d7ca331ebbe79a376f.tar.bz2
scummvm-rg350-86306893c8bde348fb9487d7ca331ebbe79a376f.zip
Merge pull request #309 from dreammaster/hopkins
Hopkins FBI Pull Request
Diffstat (limited to 'common')
-rw-r--r--common/platform.cpp2
-rw-r--r--common/platform.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/common/platform.cpp b/common/platform.cpp
index 9986048b48..899e3f45ae 100644
--- a/common/platform.cpp
+++ b/common/platform.cpp
@@ -50,6 +50,8 @@ const PlatformDescription g_platforms[] = {
{ "playstation", "psx", "psx", "Sony PlayStation", kPlatformPSX },
{ "cdi", "cdi", "cdi", "Philips CD-i", kPlatformCDi },
{ "ios", "ios", "ios", "Apple iOS", kPlatformIOS },
+ { "os2", "os2", "os2", "OS/2", kPlatformOS2 },
+ { "beos", "beos", "beos", "BeOS", kPlatformBeOS },
{ 0, 0, 0, "Default", kPlatformUnknown }
};
diff --git a/common/platform.h b/common/platform.h
index 5a4f3f1802..72f0991409 100644
--- a/common/platform.h
+++ b/common/platform.h
@@ -55,6 +55,8 @@ enum Platform {
kPlatformPSX,
kPlatformCDi,
kPlatformIOS,
+ kPlatformOS2,
+ kPlatformBeOS,
kPlatformUnknown = -1
};