aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-10-17 15:38:56 +0000
committerMax Horn2003-10-17 15:38:56 +0000
commitaadb0aa237bceded685c32edf12d1eed10a10ede (patch)
tree7e24190de93bebd037b464db67046bc30c498a51 /scumm
parenta70460833e498620122bd60a1e6708d2a263626a (diff)
downloadscummvm-rg350-aadb0aa237bceded685c32edf12d1eed10a10ede.tar.gz
scummvm-rg350-aadb0aa237bceded685c32edf12d1eed10a10ede.tar.bz2
scummvm-rg350-aadb0aa237bceded685c32edf12d1eed10a10ede.zip
oops, forgot to remove the old Platform enum
svn-id: r10863
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scummvm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 682389c2c2..f7e322fbee 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -2643,13 +2643,13 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) {
}
switch (Common::parsePlatform(ConfMan.get("platform"))) {
- case kPlatformAmiga:
+ case Common::kPlatformAmiga:
detector->_game.features |= GF_AMIGA;
break;
- case kPlatformAtariST:
+ case Common::kPlatformAtariST:
detector->_game.features |= GF_ATARI_ST;
break;
- case kPlatformMacintosh:
+ case Common::kPlatformMacintosh:
detector->_game.features |= GF_MACINTOSH;
break;
default: