From d40eeb3485d52e60fa42c667899156eb2f8fc205 Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Fri, 5 Sep 2014 07:13:18 +0200 Subject: [PATCH] COMMON: Add the original Xbox to the list of platforms --- common/platform.cpp | 3 ++- common/platform.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/common/platform.cpp b/common/platform.cpp index 48237b10c28..90b1272f187 100644 --- a/common/platform.cpp +++ b/common/platform.cpp @@ -49,8 +49,9 @@ const PlatformDescription g_platforms[] = { { "segacd", "segacd", "sega", "SegaCD", kPlatformSegaCD }, { "windows", "win", "win", "Windows", kPlatformWindows }, { "playstation", "psx", "psx", "Sony PlayStation", kPlatformPSX }, - //ResidualVM: playstation2 + //ResidualVM: playstation2, xbox { "playstation2", "ps2", "ps2", "Sony PlayStation 2", kPlatformPS2 }, + { "xbox", "xbox", "xbox", "Microsoft Xbox", kPlatformXbox }, { "cdi", "cdi", "cdi", "Philips CD-i", kPlatformCDi }, { "ios", "ios", "ios", "Apple iOS", kPlatformIOS }, { "os2", "os2", "os2", "OS/2", kPlatformOS2 }, diff --git a/common/platform.h b/common/platform.h index 97b3b411dc7..8dd084983d6 100644 --- a/common/platform.h +++ b/common/platform.h @@ -54,8 +54,9 @@ enum Platform { kPlatformPC98, kPlatformWii, kPlatformPSX, - //ResidualVM: playstation2 + //ResidualVM: playstation2, xbox kPlatformPS2, + kPlatformXbox, kPlatformCDi, kPlatformIOS, kPlatformOS2,