diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/util.cpp | 6 | ||||
-rw-r--r-- | common/util.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/common/util.cpp b/common/util.cpp index 869cec4c48..7401337110 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -252,7 +252,7 @@ const char *getLanguageDescription(Language id) { const PlatformDescription g_platforms[] = { - {"2gs", "2gs", "2gs", "Apple IIgs", kPlatformApple2GS }, + {"2gs", "2gs", "2gs", "Apple IIgs", kPlatformApple2GS}, {"3do", "3do", "3do", "3DO", kPlatform3DO}, {"acorn", "acorn", "acorn", "Acorn", kPlatformAcorn}, {"amiga", "ami", "amiga", "Amiga", kPlatformAmiga}, @@ -270,12 +270,12 @@ const PlatformDescription g_platforms[] = { {"linux", "linux", "linux", "Linux", kPlatformLinux}, {"macintosh", "mac", "mac", "Macintosh", kPlatformMacintosh}, - {"pce", "pce", "pce", "PC-Engine", kPlatformPCEngine }, + {"pce", "pce", "pce", "PC-Engine", kPlatformPCEngine}, {"nes", "nes", "nes", "NES", kPlatformNES}, {"segacd", "segacd", "sega", "SegaCD", kPlatformSegaCD}, {"windows", "win", "win", "Windows", kPlatformWindows}, {"playstation", "psx", "psx", "Sony PlayStation", kPlatformPSX}, - + {"cdi", "cdi", "cdi", "Phillips CD-i", kPlatformCDi}, {0, 0, 0, "Default", kPlatformUnknown} }; diff --git a/common/util.h b/common/util.h index 8a5f6bbace..e3dc47fe3e 100644 --- a/common/util.h +++ b/common/util.h @@ -212,11 +212,11 @@ enum Platform { kPlatformSegaCD, kPlatform3DO, kPlatformPCEngine, - kPlatformApple2GS, kPlatformPC98, kPlatformWii, kPlatformPSX, + kPlatformCDi, kPlatformUnknown = -1 }; |