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 + 1 file changed, 1 insertion(+) (limited to 'common/platform.cpp') 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 } }; -- 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 + 1 file changed, 1 insertion(+) (limited to 'common/platform.cpp') 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 } }; -- cgit v1.2.3 From 0031c41db855ac4bebd05ca1b2c1fa6694242979 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Thu, 2 May 2013 18:26:58 -0400 Subject: COMMON: Change kPlatformPC to kPlatformDOS "PC" was very ambiguous and now it matches what we show in the GUI. This also corrects sword2's platform to Windows. --- common/platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/platform.cpp') diff --git a/common/platform.cpp b/common/platform.cpp index 899e3f45ae..20ed970385 100644 --- a/common/platform.cpp +++ b/common/platform.cpp @@ -31,7 +31,7 @@ const PlatformDescription g_platforms[] = { { "amiga", "ami", "amiga", "Amiga", kPlatformAmiga }, { "atari", "atari-st", "st", "Atari ST", kPlatformAtariST }, { "c64", "c64", "c64", "Commodore 64", kPlatformC64 }, - { "pc", "dos", "ibm", "DOS", kPlatformPC }, + { "pc", "dos", "ibm", "DOS", kPlatformDOS }, { "pc98", "pc98", "pc98", "PC-98", kPlatformPC98 }, { "wii", "wii", "wii", "Nintendo Wii", kPlatformWii }, { "coco3", "coco3", "coco3", "CoCo3", kPlatformCoCo3 }, -- cgit v1.2.3