aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorEugene Sandulenko2009-02-28 10:46:33 +0000
committerEugene Sandulenko2009-02-28 10:46:33 +0000
commit5aa50ec889109864cbdd13298b4026c8ed78f484 (patch)
treef5cdded9d2cd6e5742152df99d176641551b03de /common
parentc62834cc0c4033acb2d37a65dbcd6a998b88cc76 (diff)
downloadscummvm-rg350-5aa50ec889109864cbdd13298b4026c8ed78f484.tar.gz
scummvm-rg350-5aa50ec889109864cbdd13298b4026c8ed78f484.tar.bz2
scummvm-rg350-5aa50ec889109864cbdd13298b4026c8ed78f484.zip
Patch #2638336: Broken Sword PSX Support
svn-id: r38956
Diffstat (limited to 'common')
-rw-r--r--common/util.cpp1
-rw-r--r--common/util.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/common/util.cpp b/common/util.cpp
index 2fca568a1b..75f7f82efa 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -271,6 +271,7 @@ const PlatformDescription g_platforms[] = {
{"nes", "nes", "nes", "NES", kPlatformNES},
{"segacd", "segacd", "sega", "SegaCD", kPlatformSegaCD},
{"windows", "win", "win", "Windows", kPlatformWindows},
+ {"playstation", "psx", "PSX", "Playstation", kPlatformPSX},
{0, 0, 0, "Default", kPlatformUnknown}
diff --git a/common/util.h b/common/util.h
index 5fc08f5263..18f1b70c52 100644
--- a/common/util.h
+++ b/common/util.h
@@ -201,6 +201,7 @@ enum Platform {
kPlatformApple2GS,
kPlatformPC98,
kPlatformWii,
+ kPlatformPSX,
kPlatformUnknown = -1
};