aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTravis Howell2007-03-03 12:59:48 +0000
committerTravis Howell2007-03-03 12:59:48 +0000
commitb0fea397ab22e3956106a3429994d794686d17e7 (patch)
tree20af16ec8513bd1e34daa958be6706f7aa1b4551 /common
parent84d2c1782f0a4c31fd8a75eb075ecbc5515d2c50 (diff)
downloadscummvm-rg350-b0fea397ab22e3956106a3429994d794686d17e7.tar.gz
scummvm-rg350-b0fea397ab22e3956106a3429994d794686d17e7.tar.bz2
scummvm-rg350-b0fea397ab22e3956106a3429994d794686d17e7.zip
Allow PC Engine version of Loom to at least start up.
svn-id: r25951
Diffstat (limited to 'common')
-rw-r--r--common/util.cpp3
-rw-r--r--common/util.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/common/util.cpp b/common/util.cpp
index 693285ff26..bcad8696fb 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -175,6 +175,7 @@ const char *getLanguageDescription(Language id) {
const PlatformDescription g_platforms[] = {
+ {"2gs", "2gs", "2gs", "Apple IIgs", kPlatformApple2GS },
{"3do", "3do", "3do", "3DO", kPlatform3DO},
{"acorn", "acorn", "acorn", "Acorn", kPlatformAcorn},
{"amiga", "ami", "amiga", "Amiga", kPlatformAmiga},
@@ -189,11 +190,11 @@ const PlatformDescription g_platforms[] = {
{"linux", "linux", "linux", "Linux", kPlatformLinux},
{"macintosh", "mac", "mac", "Macintosh", kPlatformMacintosh},
+ {"pce", "pce", "pce", "PC-Engine", kPlatformPCEngine },
{"nes", "nes", "nes", "NES", kPlatformNES},
{"segacd", "segacd", "sega", "SegaCD", kPlatformSegaCD},
{"windows", "win", "win", "Windows", kPlatformWindows},
- {"2gs", "2gs", "2gs", "Apple IIgs", kPlatformApple2GS },
{0, 0, 0, "Default", kPlatformUnknown}
};
diff --git a/common/util.h b/common/util.h
index 93b16a3c2e..da76bd7220 100644
--- a/common/util.h
+++ b/common/util.h
@@ -145,7 +145,7 @@ enum Platform {
kPlatformAcorn,
kPlatformSegaCD,
kPlatform3DO,
-// kPlatformPCEngine,
+ kPlatformPCEngine,
kPlatformApple2GS,