From 3f9172c7ecaf69665009b9239708c339b11d9c92 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Wed, 17 Oct 2012 08:00:37 +0200 Subject: HOPKINS: Add detection for OS/2 and Win95 full versions --- common/platform.cpp | 1 + common/platform.h | 1 + 2 files changed, 2 insertions(+) (limited to 'common') diff --git a/common/platform.cpp b/common/platform.cpp index 9986048b48..d34803d15e 100644 --- a/common/platform.cpp +++ b/common/platform.cpp @@ -50,6 +50,7 @@ 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 }, { 0, 0, 0, "Default", kPlatformUnknown } }; diff --git a/common/platform.h b/common/platform.h index 1891c7096d..9595083207 100644 --- a/common/platform.h +++ b/common/platform.h @@ -55,6 +55,7 @@ enum Platform { kPlatformPSX, kPlatformCDi, kPlatformIOS, + kPlatformOS2, kPlatformUnknown = -1 }; -- cgit v1.2.3 From a3ea2537184f0127d883525d939cdb0bce9a21cf Mon Sep 17 00:00:00 2001 From: Strangerke Date: Fri, 14 Dec 2012 01:53:17 +0100 Subject: HOPKINS: Add support for BeOS full version --- common/platform.cpp | 1 + common/platform.h | 1 + 2 files changed, 2 insertions(+) (limited to 'common') diff --git a/common/platform.cpp b/common/platform.cpp index d34803d15e..899e3f45ae 100644 --- a/common/platform.cpp +++ b/common/platform.cpp @@ -51,6 +51,7 @@ const PlatformDescription g_platforms[] = { { "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 9595083207..b5ead825fc 100644 --- a/common/platform.h +++ b/common/platform.h @@ -56,6 +56,7 @@ enum Platform { kPlatformCDi, kPlatformIOS, kPlatformOS2, + kPlatformBeOS, kPlatformUnknown = -1 }; -- cgit v1.2.3