diff options
author | Johannes Schickel | 2007-09-15 14:53:21 +0000 |
---|---|---|
committer | Johannes Schickel | 2007-09-15 14:53:21 +0000 |
commit | fd6ca3b7acc0c3b73479d4ef139fe6954250800a (patch) | |
tree | 4c61f47eee12b36c00b9e91bcff74d3bf24bff2b /common | |
parent | e0659805811ff86fb1c795c44418d62a7892c6de (diff) | |
download | scummvm-rg350-fd6ca3b7acc0c3b73479d4ef139fe6954250800a.tar.gz scummvm-rg350-fd6ca3b7acc0c3b73479d4ef139fe6954250800a.tar.bz2 scummvm-rg350-fd6ca3b7acc0c3b73479d4ef139fe6954250800a.zip |
- added PC-98 platform entry
- added Kyrandia 1 PC-98 detection entries
svn-id: r28907
Diffstat (limited to 'common')
-rw-r--r-- | common/util.cpp | 1 | ||||
-rw-r--r-- | common/util.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/common/util.cpp b/common/util.cpp index ff6f02609b..389e229a78 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -212,6 +212,7 @@ const PlatformDescription g_platforms[] = { {"atari", "atari-st", "st", "Atari ST", kPlatformAtariST}, {"c64", "c64", "c64", "Commodore 64", kPlatformC64}, {"pc", "dos", "ibm", "DOS", kPlatformPC}, + {"pc98", "pc98", "pc98", "PC-98", kPlatformPC98}, // The 'official' spelling seems to be "FM-TOWNS" (e.g. in the Indy4 demo). // However, on the net many variations can be seen, like "FMTOWNS", diff --git a/common/util.h b/common/util.h index 0d63af0878..6d1814280b 100644 --- a/common/util.h +++ b/common/util.h @@ -150,6 +150,7 @@ enum Platform { kPlatformPCEngine, kPlatformApple2GS, + kPlatformPC98, kPlatformUnknown = -1 }; |