aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/util.cpp1
-rw-r--r--common/util.h4
2 files changed, 3 insertions, 2 deletions
diff --git a/common/util.cpp b/common/util.cpp
index 03c9865859..85ed26fb55 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -181,6 +181,7 @@ const PlatformDescription g_platforms[] = {
{"pc", "dos", "DOS", kPlatformPC},
{"windows", "win", "Windows", kPlatformWindows},
{"acorn", "acorn", "Acorn", kPlatformAcorn},
+ {"segacd", "segacd", "SegaCD", kPlatformSegaCD},
{0, 0, "Default", kPlatformUnknown}
};
diff --git a/common/util.h b/common/util.h
index 762811a4eb..31c22658aa 100644
--- a/common/util.h
+++ b/common/util.h
@@ -141,9 +141,9 @@ enum Platform {
kPlatformNES = 6,
kPlatformC64 = 7,
kPlatformLinux = 8,
- kPlatformAcorn = 9
+ kPlatformAcorn = 9,
+ kPlatformSegaCD = 10
/*
- kPlatformSEGA,
kPlatformPCEngine
*/
};